public async Task UpdateUnitOfMeasureAsync(UnitOfMeasure unitOfMeasure) { _context.Modify(unitOfMeasure); await _context.CommitAsync(); }
public async Task UpdateStockTypeAsync(StockType stockType) { _context.Modify(stockType); await _context.CommitAsync(); }
public async Task UpdateRefreshTokenAsync(RefreshToken token) { _context.Modify(token); await _context.CommitAsync(); }
public async Task UpdateServiceTypeAsync(ServiceType serviceType) { _context.Modify(serviceType); await _context.CommitAsync(); }
public async Task UpdatePurchaseOrderItemAsync(PurchaseOrderItem orderItem) { _context.Modify(orderItem); await _context.CommitAsync(); }
public async Task UpdateStockItemAsync(StockItem stockItem) { _context.Modify(stockItem); await _context.CommitAsync(); }
public async Task UpdatePaymentTypeAsync(PaymentType paymentType) { _context.Modify(paymentType); await _context.CommitAsync(); }
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(); }