TeacherCource.cs 372 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace prakt1314;
  4. public partial class TeacherCource
  5. {
  6. public int IdRecord { get; set; }
  7. public int IdTeacher { get; set; }
  8. public int IdCource { get; set; }
  9. public virtual Cource IdCourceNavigation { get; set; } = null!;
  10. public virtual UserLogin IdTeacherNavigation { get; set; } = null!;
  11. }