public void DeleteInwardItems(InwardItemsFromSupplier InwardItemsFromSupplier)
 {
     _InwardItemFromSupplierRepository.Delete(InwardItemsFromSupplier);
     _UnitOfWork.Commit();
 }
 public void Update(InwardItemsFromSupplier InwardItemsFromSupplier)
 {
     _InwardItemFromSupplierRepository.Update(InwardItemsFromSupplier);
     _UnitOfWork.Commit();
 }
 public void CreateInwardItems(InwardItemsFromSupplier InwardItemsFromSupplier)
 {
     _InwardItemFromSupplierRepository.Add(InwardItemsFromSupplier);
     _UnitOfWork.Commit();
 }