Esempio n. 1
0
 public void Delete(OutwardInterShop outward)
 {
     _OutwardInterShopRepository.Delete(outward);
     _unitOfWork.Commit();
 }
Esempio n. 2
0
 public void CreateOutwardInterShop(OutwardInterShop outwardintershop)
 {
     _OutwardInterShopRepository.Add(outwardintershop);
     _unitOfWork.Commit();
 }