Exemple #1
0
 public ShipmentCapture(IPurchaseAccountant purchaseAccountant, IShipmentStatusHistoryService shipmentStatusHistoryService, IOrderFulfillmentService orderFulfillmentService, IWarehouseInventoryService warehouseInventoryService)
 {
     _purchaseAccountant           = purchaseAccountant;
     _shipmentStatusHistoryService = shipmentStatusHistoryService;
     _orderFulfillmentService      = orderFulfillmentService;
     _warehouseInventoryService    = warehouseInventoryService;
 }
Exemple #2
0
 public ShipmentItemCapture(IOrderItemService orderItemService, IPurchaseAccountant purchaseAccountant, IShipmentService shipmentService)
 {
     _orderItemService   = orderItemService;
     _purchaseAccountant = purchaseAccountant;
     _shipmentService    = shipmentService;
 }
 public PaymentTransactionCapture(IPurchaseAccountant purchaseAccountant, IOrderService orderService)
 {
     _purchaseAccountant = purchaseAccountant;
     _orderService       = orderService;
 }