예제 #1
0
 public void Delete(OutwardInterGodown outward)
 {
     _OutwardInterGodownRepository.Delete(outward);
     _unitOfWork.Commit();
 }
예제 #2
0
 public void Create(OutwardInterGodown outward)
 {
     _OutwardInterGodownRepository.Add(outward);
     _unitOfWork.Commit();
 }