public ShipOrderService(IGetOrderAdapter getOrderAdapter, INotifyOrderShipped notifier)
 {
     _getOrderAdapter = getOrderAdapter;
     _notifier        = notifier;
 }
Example #2
0
 public PickOrderService(IGetOrderAdapter getOrderAdapter, INotifyOrderPicked notifier)
 {
     _getOrderAdapter = getOrderAdapter;
     _notifier        = notifier;
 }
Example #3
0
 public OrderShippedService(IGetOrderAdapter getOrderAdapter)
 {
     _getOrderAdapter = getOrderAdapter;
 }
Example #4
0
 public OrderPickedService(IGetOrderAdapter getOrderAdapter)
 {
     _getOrderAdapter = getOrderAdapter;
 }
Example #5
0
 public OrderShippedService(IGetOrderAdapter getOrderAdapter, INotifyOrderShipped shippedNotifier)
 {
     _getOrderAdapter = getOrderAdapter;
     _shippedNotifier = shippedNotifier;
 }
Example #6
0
 public OrderPickedService(IGetOrderAdapter getOrderAdapter, INotifyOrderPicked pickNotifier)
 {
     _getOrderAdapter = getOrderAdapter;
     _pickNotifier    = pickNotifier;
 }