public NewShipRegistrationHandlerAsync(
     IShipRegistryContextFactory contextFactory,
     IAmACommandProcessor commandProcessor)
 {
     _contextFactory   = contextFactory;
     _commandProcessor = commandProcessor;
 }
예제 #2
0
 public UpdateShipOwnerHandlerAsync(
     IShipRegistryContextFactory contextFactory,
     IAmACommandProcessor commandProcessor)
 {
     _contextFactory   = contextFactory;
     _commandProcessor = commandProcessor;
 }
예제 #3
0
 public RemoveShipHandlerAsync(
     IShipRegistryContextFactory contextFactory,
     IAmACommandProcessor commandProcessor)
 {
     _contextFactory   = contextFactory;
     _commandProcessor = commandProcessor;
 }
예제 #4
0
 public ShippingLineByIdQueryHandler(IShipRegistryContextFactory contextFactory)
 {
     _contextFactory = contextFactory;
 }
예제 #5
0
 public ShipsAllQueryHandlerAsync(IShipRegistryContextFactory contextFactory)
 {
     _contextFactory = contextFactory;
 }
예제 #6
0
 public RemoveLineHandlerAsync(IShipRegistryContextFactory contextFactory)
 {
     _contextFactory = contextFactory;
 }
예제 #7
0
 public UpdateLineNameHandler(IShipRegistryContextFactory contextFactory, IAmACommandProcessor commandProcessor)
 {
     _contextFactory   = contextFactory;
     _commandProcessor = commandProcessor;
 }