Example #1
0
 public HealthCheckService(ILoggerFactory loggerFactory, IServiceScopeFactory serviceScope, IServiceResolution serviceResolution, IWebRequest webRequest, IHealthCheckState healthCheckState)
     : base(loggerFactory, serviceScope)
 {
     _serviceResolution = serviceResolution;
     _webRequest        = webRequest;
     _healthCheckState  = healthCheckState;
 }
Example #2
0
 public HealthCheckController(IHealthCheckState healthCheckState)
 {
     _healthCheckState = healthCheckState;
 }