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