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