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 CustomerServiceConversationMsgsController(ICustomerServiceConversationMsgAppService customerServiceConversationMsgAppService)
 {
     _customerServiceConversationMsgAppService = customerServiceConversationMsgAppService;
 }