public SubjectItem(int id, string name, int hours, int course, int semester, FormOfControlItem form_control) : base(id, name) { this.FormOfControl = form_control; this.CountOfHours = hours; this.Semester = semester; this.Course = course; }
//public List<StudentItem> Students { set; get; } public SheetItem(int id, SubjectItem subject, TeacherItem teacher, DateTime date_set, DateTime date_get, FormOfControlItem control, int group_id = 0, string group_name = "") { this.Id = id; this.Subject = subject; this.Teacher = teacher; this.DateSet = date_set; this.DateGet = date_get; this.Control = control; this.GroupId = group_id; this.GroupName = group_name; }
public SubjectItem() { this.FormOfControl = new FormOfControlItem(); }