public void Delete(PurchaseInventoryTax PurchaseInventoryTax)
 {
     _PurchaseInventoryTaxRepository.Delete(PurchaseInventoryTax);
     _UnitOfWork.Commit();
 }
 public void Create(PurchaseInventoryTax PurchaseInventoryTax)
 {
     _PurchaseInventoryTaxRepository.Add(PurchaseInventoryTax);
     _UnitOfWork.Commit();
 }