Esempio n. 1
0
 public ApiQuerier(string apiKey)
 {
     _webClient = new ApiWebClient();
     _options   = new ApiQuerierSettings()
     {
         ApiKey = apiKey
     };
 }
Esempio n. 2
0
 public ApiQuerier(IApiWebClient webClient, IOptions <ApiQuerierSettings> options)
 {
     _webClient = webClient;
     _options   = options.Value;
 }
Esempio n. 3
0
 public ApiQuerier(IOptions <ApiQuerierSettings> options)
 {
     _webClient = new ApiWebClient();
     _options   = options.Value;
 }