public string GetDepartmentName()
 {
     if (EmployeeEvent != null)
     {
         EmployeeEvent.Invoke("GetDepartmentName()");
     }
     return(DepartmentName);
 }
 public int GetId()
 {
     if (EmployeeEvent != null)
     {
         EmployeeEvent.Invoke("GetId()");
     }
     return(Id);
 }