예제 #1
0
 public bool Delete(int id)
 {
     return(iDepartmentRepository.Delete(id));
 }
예제 #2
0
 public Department Delete(Department entity)
 {
     return(_department.Delete(entity));
 }
 public void DeleteDepartment(int id)
 {
     _departmentRepository.Delete(id);
 }
 public Department Delete(int id)
 {
     return(_departmentRepository.Delete(id));
 }