Exemplo n.º 1
0
 public bool DeleteDepartment(int id)
 {
     try
     {
         DepartmentGetway departmentGetway = new DepartmentGetway();
         return(departmentGetway.DeleteDepartment(id));
     }
     catch (Exception)
     {
         throw;
     }
 }