コード例 #1
0
 public bool DeleteAllocationDetailLine(AllocationDetailLine allocationDetailLine)
 {
     if (allocationDetailLine == null) return false;
     _unitOfWork.AllocationDetailLineRepository.Delete(allocationDetailLine);
     _unitOfWork.Save();
     return true;
 }
コード例 #2
0
 public bool EditAllocationDetailLine(AllocationDetailLine allocationDetailLine)
 {
     _unitOfWork.AllocationDetailLineRepository.Edit(allocationDetailLine);
     _unitOfWork.Save();
     return true;
 }