public RegionsController(IHandlerDispatcher dispatcher, IMapper mapper) : base(dispatcher, mapper)
 {
 }
 public DeleteAllProductsCommandHandler(IHandlerDispatcher handlerDispatcher, IDbContext context)
 {
     _handlerDispatcher = handlerDispatcher;
     _context           = context;
 }
Example #3
0
 public ConnectionFactory(IHandlerDispatcher dispatcher)
 {
     _dispatcher = dispatcher;
 }
 public IndividualContestController(IHandlerDispatcher handlerDispatcher) : base(handlerDispatcher)
 {
 }
 public ContestsController(IHandlerDispatcher handlerDispatcher, IMapper mapper) : base(handlerDispatcher, mapper)
 {
 }
 public OrderController(IHandlerDispatcher handlerDispatcher)
 {
     _handlerDispatcher = handlerDispatcher;
 }
 public ToDoController(IHandlerDispatcher handlerDispatcher)
 {
     _handlerDispatcher = handlerDispatcher;
 }