using System; using System.Collections.Generic; namespace prakt1314; public partial class Cource { public int IdCource { get; set; } public string Cource1 { get; set; } = null!; public int HoursNumber { get; set; } public virtual ICollection TeacherCources { get; set; } = new List(); }