Example #1
0
 public Student()
 {
     this.courses = new HashSet<Course>();
     this.homeworks = new HashSet<Homework>();
     this.trainees = new HashSet<Student>();
     this.studentInfo = new StudentInfo();
 }
 public Student()
 {
     this.courses = new HashSet<Course>();
     this.homeworks = new HashSet<Homework>();
     this.trainees = new HashSet<Student>();
     this.additionalInformation = new StudentInfo();
 }