IBuy.cs 87 B

1234567
  1. namespace Kinomaks
  2. {
  3. internal interface IBuy
  4. {
  5. void DoBuy();
  6. }
  7. }