コード例 #1
0
 public async Task DeleteStockTypeAsync(StockType stockType)
 {
     _context.Delete(stockType);
     await _context.CommitAsync();
 }
コード例 #2
0
 public async Task DeleteServiceTypeAsync(ServiceType serviceType)
 {
     _context.Delete(serviceType);
     await _context.CommitAsync();
 }
コード例 #3
0
 public async Task DeleteUnitOfMeasureAsync(UnitOfMeasure unitOfMeasure)
 {
     _context.Delete(unitOfMeasure);
     await _context.CommitAsync();
 }
コード例 #4
0
 public async Task DeletePurchaseOrderItemAsync(PurchaseOrderItem orderItem)
 {
     _context.Delete(orderItem);
     await _context.CommitAsync();
 }
コード例 #5
0
 public async Task DeleteStockItemAsync(StockItem stockItem)
 {
     _context.Delete(stockItem);
     await _context.CommitAsync();
 }
コード例 #6
0
 public async Task DeleteTransactionTypeAsync(TransactionType transactionType)
 {
     _context.Delete(transactionType);
     await _context.CommitAsync();
 }
コード例 #7
0
 public async Task DeletePaymentTypeAsync(PaymentType paymentType)
 {
     _context.Delete(paymentType);
     await _context.CommitAsync();
 }
コード例 #8
0
 public async Task DeleteSupplierAsync(Supplier supplier)
 {
     _context.Delete(supplier);
     await _context.CommitAsync();
 }
コード例 #9
0
 public async Task DeleteGoodsReceivedNoteAsync(GoodsReceivedNote goodsReceivedNote)
 {
     _context.Delete(goodsReceivedNote);
     await _context.CommitAsync();
 }
コード例 #10
0
 public async Task DeleteGoodsReceivedNoteFreeItemAsync(GoodsReceivedNoteFreeItem goodsReceivedNoteFreeItem)
 {
     _context.Delete(goodsReceivedNoteFreeItem);
     await _context.CommitAsync();
 }
コード例 #11
0
 public async Task DeleteTransactionAsync(Transaction transaction)
 {
     _context.Delete(transaction);
     await _context.CommitAsync();
 }
コード例 #12
0
 public async Task DeletePurchaseOrderAsync(PurchaseOrder order)
 {
     _context.Delete(order);
     await _context.CommitAsync();
 }