コード例 #1
0
 public bool Delete(int id)
 {
     return(iDepartmentRepository.Delete(id));
 }
コード例 #2
0
 public Department Delete(Department entity)
 {
     return(_department.Delete(entity));
 }
コード例 #3
0
 public void DeleteDepartment(int id)
 {
     _departmentRepository.Delete(id);
 }
コード例 #4
0
 public Department Delete(int id)
 {
     return(_departmentRepository.Delete(id));
 }