public ExternalEndpointHealthCheck(IOptions <ServiceSettings> options)
 {
     serviceSettings = options.Value;
 }
Пример #2
0
 public WeatherClient(HttpClient httpClient, IOptions <ServiceSettings> options)
 {
     _httpClient = httpClient;
     _settings   = options.Value;
 }