public TutWhizDepartment(TutWhizSchool school, string name)
 {
     this._School = school;
     this._Name   = name;
 }
 public TutWhizDepartment(int id, TutWhizSchool school, string name)
 {
     this._ID     = id;
     this._School = school;
     this._Name   = name;
 }
 public TutWhizDepartment()
 {
     this._ID     = 0;
     this._School = new TutWhizSchool();
     this._Name   = "";
 }