public TutWhizTeacher(int id, TutWhizDepartment detp, string firstname, string lastname) { this._ID = id; this._Department = detp; this._FirstName = firstname; this._LastName = lastname; }
public TutWhizTeacher() { this._ID = 0; this._Department = new TutWhizDepartment(); this._FirstName = ""; this._LastName = ""; }
public TutWhizClass(int id, TutWhizDepartment dept, string name) { this._ID = id; this._Department = dept; this._Name = name; }
public TutWhizClass(TutWhizDepartment dept, string name) { this._Department = dept; this._Name = name; }
public TutWhizClass() { this._ID = 0; this._Department = new TutWhizDepartment(); this._Name = ""; }