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