Exemplo n.º 1
0
 public MessagesController(INotificationService notificationService,
                           IMessageQueryService messageQueryService,
                           IMessageCommandService messageCommandService,
                           IConversationQueryService conversationQueryService,
                           IConversationCommandService conversationCommandService,
                           IChannelCommandService channelCommandService,
                           ICacheService cacheService)
 {
     _notificationService        = notificationService;
     _messageQueryService        = messageQueryService;
     _messageCommandService      = messageCommandService;
     _conversationQueryService   = conversationQueryService;
     _conversationCommandService = conversationCommandService;
     _channelCommandService      = channelCommandService;
     _cacheService = cacheService;
 }
 public PrivateMessageController(ICommandBus bus, IMessageQueryService messageQueryService)
     : base(bus)
 {
     _messageQueryService = messageQueryService;
 }
Exemplo n.º 3
0
 public DataController(IMapper mapper, IMessageQueryService messageQueryService)
 {
     _mapper = mapper;
     _messageQueryService = messageQueryService;
 }
 public CustomerPublicMessageController(IMessageQueryService messageQueryService)
 {
     _messageQueryService = messageQueryService;
 }
Exemplo n.º 5
0
 public ShopPublicMessageController(IMessageQueryService messageQueryService)
 {
     _messageQueryService = messageQueryService;
 }