Guest User

Untitled

a guest
May 22nd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApplication12
  8. {
  9. interface IClass
  10. {
  11. string ClassName { get; set; } // Номер и буква класса "2B"
  12. }
  13. interface IPassed
  14. {
  15. int CurrentNum { get; } // Количество сдающих
  16.  
  17. void AddPeople(int num); // Добавить сдающих
  18. }
  19. }
Add Comment
Please, Sign In to add comment