PartTeacherCourse.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace pr13.Models
  7. {
  8. public partial class Course
  9. {
  10. public string CountTeachers
  11. {
  12. get
  13. {
  14. int count = 0;
  15. foreach (var item in TeachersCourses)
  16. {
  17. count++;
  18. }
  19. if (count == 0)
  20. {
  21. return $"Никто не записался на этот курс";
  22. }
  23. else
  24. {
  25. return $"{count} чел.";
  26. }
  27. }
  28. }
  29. public int? HoursCount
  30. {
  31. get
  32. {
  33. int? count = 0;
  34. foreach (var item in TeachersCourses)
  35. {
  36. if (count == 0)
  37. {
  38. count += item.Hours;
  39. }
  40. }
  41. return count;
  42. }
  43. }
  44. }
  45. }