コード例 #1
0
 public DeleteOrderCommand(long orderID, IOrderDataProxy orderDataProxy, OrderItemService orderItemService, ITransactionContext transactionContext)
 {
     _orderID = orderID;
     _orderDataProxy = orderDataProxy;
     _orderItemService = orderItemService;
     _transactionContext = transactionContext;
 }
コード例 #2
0
 public DeleteOrderCommand(long orderID, IOrderDataProxy orderDataProxy, IOrderItemService orderItemService, ITransactionContext transactionContext)
 {
     _orderID            = orderID;
     _orderDataProxy     = orderDataProxy;
     _orderItemService   = orderItemService;
     _transactionContext = transactionContext;
 }
コード例 #3
0
ファイル: DeleteProductCommand.cs プロジェクト: Degot/Samples
 public DeleteProductCommand(long productID,
                             IProductDataProxy productDataProxy,
                             IInventoryItemService inventoryService,
                             IOrderDataProxy orderDataProxy,
                             ITransactionContext transactionContext)
 {
     _productID          = productID;
     _productDataProxy   = productDataProxy;
     _inventoryService   = inventoryService;
     _orderDataProxy     = orderDataProxy;
     _transactionContext = transactionContext;
 }
コード例 #4
0
ファイル: OrderService.cs プロジェクト: ndphuong/Peasy.NET
 public OrderService(IOrderDataProxy dataProxy, OrderItemService orderItemService, ITransactionContext transactionContext) : base(dataProxy)
 {
     _orderItemService   = orderItemService;
     _transactionContext = transactionContext;
 }
コード例 #5
0
 public CanDeleteProductRule(long productID, IOrderDataProxy ordersDataProxy)
 {
     _productID       = productID;
     _ordersDataProxy = ordersDataProxy;
 }
コード例 #6
0
ファイル: ProductService.cs プロジェクト: Degot/Samples
 public ProductService(IProductDataProxy dataProxy, IOrderDataProxy orderDataProxy, IInventoryItemService inventoryService, ITransactionContext transactionContext) : base(dataProxy)
 {
     _orderDataProxy     = orderDataProxy;
     _inventoryService   = inventoryService;
     _transactionContext = transactionContext;
 }
コード例 #7
0
ファイル: ProductClientService.cs プロジェクト: peasy/Samples
 public ProductClientService(IProductDataProxy dataProxy, IOrderDataProxy orderDataProxy, IInventoryItemService inventoryService, ITransactionContext transactionContext) : base(dataProxy, orderDataProxy, inventoryService, transactionContext)
 {
 }
コード例 #8
0
 public ProductClientService(IProductDataProxy dataProxy, IOrderDataProxy orderDataProxy, IInventoryItemService inventoryService, ITransactionContext transactionContext) : base(dataProxy, orderDataProxy, inventoryService, transactionContext)
 {
 }
コード例 #9
0
ファイル: CanDeleteProductRule.cs プロジェクト: peasy/Samples
 public CanDeleteProductRule(long productID, IOrderDataProxy ordersDataProxy)
 {
     _productID = productID;
     _ordersDataProxy = ordersDataProxy;
 }