Пример #1
0
 public StudentAndLections(Lection lection, Student student)
 {
     this.lection = lection;
     mark         = 0;
     this.student = student;
     presence     = false;
     homework     = false;
 }
Пример #2
0
 public StudentAndLections(Lection lection, int mark, Student student, bool presence, bool homework)
 {
     this.lection  = lection;
     this.mark     = mark;
     this.student  = student;
     this.presence = presence;
     this.homework = homework;
 }