コード例 #1
0
 public ShipOrderService(IGetOrderAdapter getOrderAdapter, INotifyOrderShipped notifier)
 {
     _getOrderAdapter = getOrderAdapter;
     _notifier        = notifier;
 }
コード例 #2
0
 public OrderShippedResult Ship(WarehouseEmployee.Id warehouseEmployeeId, DateTime updateTime,
                                ShippingInfo shippingInfo, INotifyOrderShipped shippedNotifier)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public void Ship(int warehouseEmployeeId, DateTime updateTime, ShippingInfo shippingInfo,
                  INotifyOrderShipped notifier)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
 public OrderShippedService(IGetOrderAdapter getOrderAdapter, INotifyOrderShipped shippedNotifier)
 {
     _getOrderAdapter = getOrderAdapter;
     _shippedNotifier = shippedNotifier;
 }