Exemplo n.º 1
0
 public ChatProcessor(IHubContext <ChatHub> chatHubContext, AuthorService authorService,
                      BotService botService, IntegrationManager integrationManager, ChatRulesService chatRulesService,
                      ChatMessageService chatMessageService, ILogger <ChatMessageService> logger, MessageTemplateService messageTemplateService, EmoticonService emoticonService)
 {
     this.chatHubContext         = chatHubContext;
     this.authorService          = authorService;
     this.botService             = botService;
     this.integrationManager     = integrationManager;
     this.chatRulesService       = chatRulesService;
     this.chatMessageService     = chatMessageService;
     this.logger                 = logger;
     this.messageTemplateService = messageTemplateService;
     this.emoticonService        = emoticonService;
 }
Exemplo n.º 2
0
 public EmoticonController(EmoticonService EmoticonService)
 {
     this.EmoticonService = EmoticonService;
 }