コード例 #1
0
 public ShipmentsController(
     IMapper mapper,
     IShipmentDataService shipments)
 {
     this.mapper    = mapper;
     this.shipments = shipments;
 }
コード例 #2
0
 public ShipmentsController(IShipmentDataService shipmentDataService, ICommandBus commandBus)
 {
     _shipmentDataService = shipmentDataService;
     _commandBus          = commandBus;
 }