public void Pick(int warehouseEmployeeId, DateTime updateTime, bool successfullyPicked, string failureReason,
                  INotifyOrderPicked notifier)
 {
     throw new NotImplementedException();
 }
Exemple #2
0
 public OrderPickedResult Pick(WarehouseEmployee.Id warehouseEmployeeId, DateTime updateTime,
                               bool successfullyPicked, string failureReason, INotifyOrderPicked pickNotifier)
 {
     throw new NotImplementedException();
 }
Exemple #3
0
 public PickOrderService(IGetOrderAdapter getOrderAdapter, INotifyOrderPicked notifier)
 {
     _getOrderAdapter = getOrderAdapter;
     _notifier        = notifier;
 }
Exemple #4
0
 public OrderPickedService(IGetOrderAdapter getOrderAdapter, INotifyOrderPicked pickNotifier)
 {
     _getOrderAdapter = getOrderAdapter;
     _pickNotifier    = pickNotifier;
 }