public Instructor()
 {
     Cohort = new Cohort();
 }
 public Student()
 {
     Exercise = new List <Exercise>();
     Cohort   = new Cohort();
 }