CourcePart.cs 325 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace prakt1314
  8. {
  9. public partial class Cource
  10. {
  11. [NotMapped]
  12. public int PeopleCompleteNumber => TeacherCources.Count;
  13. }
  14. }