Example #1
0
 public GetAgentConfigByCitysService(IAgentConfigByCityService agentConfigByCityService, IAgentRepository agentRepository, IChannelModelMapRedisService channelModelMapRedisService)
 {
     _agentConfigByCityService    = agentConfigByCityService;
     _agentRepository             = agentRepository;
     _channelModelMapRedisService = channelModelMapRedisService;
     _logError = LogManager.GetLogger("ERROR");
 }
Example #2
0
 public ChannelStatusByUkeyIdService(IAgentUKeyRepository agentUKeyRepository, IChannelModelMapRedisService channelModelMapRedisService, IValidateService validateService)
 {
     logError                     = LogManager.GetLogger("ERROR");
     _agentUKeyRepository         = agentUKeyRepository;
     _channelModelMapRedisService = channelModelMapRedisService;
     _validateService             = validateService;
 }
Example #3
0
 public ChannelService(IChannelModelMapRedisService channelModelMapRedisService, IValidateService validateService, IAgentConfigByCityService agentConfigByCityService, IAgentUKeyService agentUKeyService)
 {
     logInfo  = LogManager.GetLogger("INFO");
     logError = LogManager.GetLogger("ERROR");
     _channelModelMapRedisService = channelModelMapRedisService;
     _validateService             = validateService;
     _agentConfigByCityService    = agentConfigByCityService;
     _agentUKeyService            = agentUKeyService;
 }