Ejemplo n.º 1
0
 public CardsController(ICommandDispatcher commandDispatcher, ICardQueryService userQueryService, IMediator mediator)
     : base(commandDispatcher)
 {
     this.userQueryService = userQueryService;
     this.mediator         = mediator;
 }
Ejemplo n.º 2
0
 public GetCardsRequestHandler(ICardQueryService cardQueryService)
 {
     this.cardQueryService = cardQueryService;
 }