public SelfKeFuMessageHandler(ICacheManager cacheManager, ICYConfigAppService cYConfigAppService,
                               IMpAccountAppService mpAccountAppService, IAccessTokenContainer accessTokenContainer,
                               ICustomerServiceResponseTextAppService customerServiceResponseTextAppService,
                               ICustomerServiceConversationAppService customerServiceConversationAppService,
                               ICustomerServiceConversationMsgAppService customerServiceConversationMsgAppService,
                               IMpFanAppService mpFanAppService, ISignalrCustomerService signalrCustomerService,
                               ICustomerServiceOnlineAppService customerServiceOnlineAppService,
                               IFileServer fileServer, IWebUrlService webUrlService,
                               IBackgroundJobManager backgroundJobManager)
 {
     _accessTokenContainer   = accessTokenContainer;
     _mpAccountAppService    = mpAccountAppService;
     _mpFanAppService        = mpFanAppService;
     _cacheManager           = cacheManager;
     _signalrCustomerService = signalrCustomerService;
     _cYConfigAppService     = cYConfigAppService;
     _customerServiceResponseTextAppService    = customerServiceResponseTextAppService;
     _customerServiceConversationAppService    = customerServiceConversationAppService;
     _customerServiceConversationMsgAppService = customerServiceConversationMsgAppService;
     _fileServer    = fileServer;
     _webUrlService = webUrlService;
     _customerServiceOnlineAppService = customerServiceOnlineAppService;
     Logger = NullLogger.Instance;
     _backgroundJobManager = backgroundJobManager;
 }
 public CustomerQuestionJoin(
     ICacheManager cacheManager,
     ICustomerServiceConversationAppService customerServiceConversationAppService,
     IMpFanAppService mpFanAppService,
     IAccessTokenContainer accessTokenContainer,
     IMpAccountAppService mpAccountAppService,
     ISignalrCustomerService signalrCustomerService,
     ICustomerServiceOnlineAppService customerServiceOnlineAppService)
 {
     _cacheManager = cacheManager;
     _customerServiceConversationAppService = customerServiceConversationAppService;
     _mpFanAppService                 = mpFanAppService;
     _accessTokenContainer            = accessTokenContainer;
     _mpAccountAppService             = mpAccountAppService;
     _signalrCustomerService          = signalrCustomerService;
     _customerServiceOnlineAppService = customerServiceOnlineAppService;
 }