public HomeController(IConfigService configService, ILogReadService logService, ConfigEntity configEntity, IHttpClientFactory clientFactory)
 {
     this.configService = configService;
     this.logService    = logService;
     this.configEntity  = configEntity;
     this.clientFactory = clientFactory;
 }
Exemple #2
0
 public LogController(ILogReadService logService, ConfigEntity configEntity, IConfigService configService, ITraceAndPageService traceAndPageService)
 {
     this.logService          = logService;
     this.configEntity        = configEntity;
     this.configService       = configService;
     this.traceAndPageService = traceAndPageService;
 }
Exemple #3
0
 public LogController(ILogReadService logService)
 {
     _logService = logService;
 }
Exemple #4
0
 public LogController(ILogReadService logService, ConfigEntity configEntity, IConfigService configService)
 {
     this.logService    = logService;
     this.configEntity  = configEntity;
     this.configService = configService;
 }
Exemple #5
0
 public LogController(ILogReadService logService)
 {
     _logService = logService;
 }