using System; using System.Collections.Generic; namespace Prak12; public partial class TeachersCourse { public int IdRecord { get; set; } public int IdTeacher { get; set; } public int IdCourse { get; set; } public virtual Course IdCourseNavigation { get; set; } = null!; public virtual Teacher IdTeacherNavigation { get; set; } = null!; }