Esempio n. 1
0
 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;
 }
Esempio n. 2
0
 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;
 }
Esempio n. 3
0
 //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;
 }
Esempio n. 4
0
 public SubjectItem()
 {
     this.FormOfControl = new FormOfControlItem();
 }
Esempio n. 5
0
        //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;
        }