public ExternalEndpointHealthCheck(IOptions <ServiceSettings> options)
 {
     serviceSettings = options.Value;
 }
Exemplo n.º 2
0
 public WeatherClient(HttpClient httpClient, IOptions <ServiceSettings> options)
 {
     _httpClient = httpClient;
     _settings   = options.Value;
 }