コード例 #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;
 }
コード例 #2
0
 public PrivateMessageController(ICommandBus bus, IMessageQueryService messageQueryService)
     : base(bus)
 {
     _messageQueryService = messageQueryService;
 }
コード例 #3
0
 public DataController(IMapper mapper, IMessageQueryService messageQueryService)
 {
     _mapper = mapper;
     _messageQueryService = messageQueryService;
 }
コード例 #4
0
 public CustomerPublicMessageController(IMessageQueryService messageQueryService)
 {
     _messageQueryService = messageQueryService;
 }
コード例 #5
0
 public ShopPublicMessageController(IMessageQueryService messageQueryService)
 {
     _messageQueryService = messageQueryService;
 }