Ejemplo n.º 1
0
 public bool Delete(int id)
 {
     return(iDepartmentRepository.Delete(id));
 }
Ejemplo n.º 2
0
 public Department Delete(Department entity)
 {
     return(_department.Delete(entity));
 }
 public void DeleteDepartment(int id)
 {
     _departmentRepository.Delete(id);
 }
Ejemplo n.º 4
0
 public Department Delete(int id)
 {
     return(_departmentRepository.Delete(id));
 }