Ejemplo n.º 1
0
 public employee()
 {
     Department = new department();
 }
Ejemplo n.º 2
0
 public employee(long idEmployee, string nameEmployee, department department)
 {
     this.IdEmployee   = idEmployee;
     this.NameEmployee = nameEmployee;
     this.Department   = department;
 }