Ejemplo n.º 1
0
 public TutWhizTeacher(int id, TutWhizDepartment detp, string firstname, string lastname)
 {
     this._ID         = id;
     this._Department = detp;
     this._FirstName  = firstname;
     this._LastName   = lastname;
 }
Ejemplo n.º 2
0
 public TutWhizTeacher()
 {
     this._ID         = 0;
     this._Department = new TutWhizDepartment();
     this._FirstName  = "";
     this._LastName   = "";
 }
Ejemplo n.º 3
0
 public TutWhizClass(int id, TutWhizDepartment dept, string name)
 {
     this._ID         = id;
     this._Department = dept;
     this._Name       = name;
 }
Ejemplo n.º 4
0
 public TutWhizClass(TutWhizDepartment dept, string name)
 {
     this._Department = dept;
     this._Name       = name;
 }
Ejemplo n.º 5
0
 public TutWhizClass()
 {
     this._ID         = 0;
     this._Department = new TutWhizDepartment();
     this._Name       = "";
 }