public CreateTransactionHandler(IMessageService messageService, IReplyMessageService replyService)
 {
     _messageService = messageService;
     _replyService   = replyService;
 }
Exemple #2
0
 public GetAccountByIdHandler(IMessageService messageService, IReplyMessageService replyService)
 {
     _messageService = messageService;
     _replyService   = replyService;
 }
Exemple #3
0
 public SendController(IMessageService messageService, IReplyMessageService replyService, IMediator mediator)
 {
     _mediator = mediator;
 }