public ShipOrderService(IGetOrderAdapter getOrderAdapter, INotifyOrderShipped notifier) { _getOrderAdapter = getOrderAdapter; _notifier = notifier; }
public PickOrderService(IGetOrderAdapter getOrderAdapter, INotifyOrderPicked notifier) { _getOrderAdapter = getOrderAdapter; _notifier = notifier; }
public OrderShippedService(IGetOrderAdapter getOrderAdapter) { _getOrderAdapter = getOrderAdapter; }
public OrderPickedService(IGetOrderAdapter getOrderAdapter) { _getOrderAdapter = getOrderAdapter; }
public OrderShippedService(IGetOrderAdapter getOrderAdapter, INotifyOrderShipped shippedNotifier) { _getOrderAdapter = getOrderAdapter; _shippedNotifier = shippedNotifier; }
public OrderPickedService(IGetOrderAdapter getOrderAdapter, INotifyOrderPicked pickNotifier) { _getOrderAdapter = getOrderAdapter; _pickNotifier = pickNotifier; }