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