Count.cs 931 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace AvaloniaApplicationBase.Models
  7. {
  8. public partial class Teacher
  9. {
  10. public string count
  11. {
  12. get
  13. {
  14. long? c = 0;
  15. foreach (var item in TeacherCourses)
  16. {
  17. if (item.TeacherId == Id)
  18. {
  19. c += Convert.ToInt32(item.Course.Time);
  20. }
  21. else
  22. {
  23. }
  24. }
  25. if (c > 0)
  26. {
  27. return "Курсы в объёме " + c + " часов.";
  28. }
  29. else
  30. {
  31. return "Курсы не найдены.";
  32. }
  33. }
  34. }
  35. }
  36. }