Exemple #1
0
 public GetAddressIoSearchService(IOptions <AddressSearchServiceSettings> settings)
 {
     _settings   = settings.Value;
     _restClient = new RestClient();
 }
Exemple #2
0
 public GetAddressIoSearchService(IOptions <AddressSearchServiceSettings> settings, IRestClient restClient)
 {
     _settings   = settings.Value;
     _restClient = restClient;
 }