1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace prakt1314;
- public partial class TeacherCource
- {
- public int IdRecord { get; set; }
- public int IdTeacher { get; set; }
- public int IdCource { get; set; }
- public virtual Cource IdCourceNavigation { get; set; } = null!;
- public virtual UserLogin IdTeacherNavigation { get; set; } = null!;
- }
|