public DeleteOrderCommand(long orderID, IOrderDataProxy orderDataProxy, OrderItemService orderItemService, ITransactionContext transactionContext) { _orderID = orderID; _orderDataProxy = orderDataProxy; _orderItemService = orderItemService; _transactionContext = transactionContext; }
public DeleteOrderCommand(long orderID, IOrderDataProxy orderDataProxy, IOrderItemService orderItemService, ITransactionContext transactionContext) { _orderID = orderID; _orderDataProxy = orderDataProxy; _orderItemService = orderItemService; _transactionContext = transactionContext; }
public DeleteProductCommand(long productID, IProductDataProxy productDataProxy, IInventoryItemService inventoryService, IOrderDataProxy orderDataProxy, ITransactionContext transactionContext) { _productID = productID; _productDataProxy = productDataProxy; _inventoryService = inventoryService; _orderDataProxy = orderDataProxy; _transactionContext = transactionContext; }
public OrderService(IOrderDataProxy dataProxy, OrderItemService orderItemService, ITransactionContext transactionContext) : base(dataProxy) { _orderItemService = orderItemService; _transactionContext = transactionContext; }
public CanDeleteProductRule(long productID, IOrderDataProxy ordersDataProxy) { _productID = productID; _ordersDataProxy = ordersDataProxy; }
public ProductService(IProductDataProxy dataProxy, IOrderDataProxy orderDataProxy, IInventoryItemService inventoryService, ITransactionContext transactionContext) : base(dataProxy) { _orderDataProxy = orderDataProxy; _inventoryService = inventoryService; _transactionContext = transactionContext; }
public ProductClientService(IProductDataProxy dataProxy, IOrderDataProxy orderDataProxy, IInventoryItemService inventoryService, ITransactionContext transactionContext) : base(dataProxy, orderDataProxy, inventoryService, transactionContext) { }