Ejemplo n.º 1
0
 public HealthController(IOptions <List <string> > urls, IHealthChecker healthChecker, IHealthJob healthJob, IHttpClientFactory client)
 {
     _urls          = urls;
     _healthChecker = healthChecker;
     _healthJob     = healthJob;
     _client        = client;
 }
Ejemplo n.º 2
0
 public HealthController(IOptions <List <string> > urls, IHealthChecker healthChecker, IHealthJob healthJob)
 {
     _urls          = urls;
     _healthChecker = healthChecker;
     _healthJob     = healthJob;
 }