Ejemplo n.º 1
0
 public TutWhizDepartment(TutWhizSchool school, string name)
 {
     this._School = school;
     this._Name   = name;
 }
Ejemplo n.º 2
0
 public TutWhizDepartment(int id, TutWhizSchool school, string name)
 {
     this._ID     = id;
     this._School = school;
     this._Name   = name;
 }
Ejemplo n.º 3
0
 public TutWhizDepartment()
 {
     this._ID     = 0;
     this._School = new TutWhizSchool();
     this._Name   = "";
 }