Ejemplo n.º 1
0
 public StudentGroup(int groupID, string level, Classes studentClass, int groupRoom, Employee Mentor)
 {
     this.groupID      = groupID;
     this.level        = level;
     this.studentClass = studentClass;
     this.groupRoom    = groupRoom;
     this.Mentor       = Mentor;
     this.students     = new System.Collections.Generic.List <Student>();
 }