public async Task UpdateUnitOfMeasureAsync(UnitOfMeasure unitOfMeasure)
 {
     _context.Modify(unitOfMeasure);
     await _context.CommitAsync();
 }
Exemple #2
0
 public async Task UpdateStockTypeAsync(StockType stockType)
 {
     _context.Modify(stockType);
     await _context.CommitAsync();
 }
Exemple #3
0
 public async Task UpdateRefreshTokenAsync(RefreshToken token)
 {
     _context.Modify(token);
     await _context.CommitAsync();
 }
 public async Task UpdateServiceTypeAsync(ServiceType serviceType)
 {
     _context.Modify(serviceType);
     await _context.CommitAsync();
 }
Exemple #5
0
 public async Task UpdatePurchaseOrderItemAsync(PurchaseOrderItem orderItem)
 {
     _context.Modify(orderItem);
     await _context.CommitAsync();
 }
 public async Task UpdateStockItemAsync(StockItem stockItem)
 {
     _context.Modify(stockItem);
     await _context.CommitAsync();
 }
Exemple #7
0
 public async Task UpdatePaymentTypeAsync(PaymentType paymentType)
 {
     _context.Modify(paymentType);
     await _context.CommitAsync();
 }
Exemple #8
0
 public async Task UpdateTransactionTypeAsync(TransactionType transactionType)
 {
     _context.Modify(transactionType);
     await _context.CommitAsync();
 }
 public async Task UpdateSupplierAsync(Supplier supplier)
 {
     _context.Modify(supplier);
     await _context.CommitAsync();
 }
 public async Task UpdateGoodsReceivedNoteAsync(GoodsReceivedNote goodsReceivedNote)
 {
     _context.Modify(goodsReceivedNote);
     await _context.CommitAsync();
 }
 public async Task UpdateGoodsReceivedNoteFreeItemAsync(GoodsReceivedNoteFreeItem goodsReceivedNoteFreeItem)
 {
     _context.Modify(goodsReceivedNoteFreeItem);
     await _context.CommitAsync();
 }