Example #1
0
 public ReverseGeocodeService(
     IAwsAuthenticationService awsAuthenticationService,
     IOptions <AwsAuthenticationOptions> awsOptions,
     IOptions <General> generalOptions)
 {
     _awsAuthenticationService = awsAuthenticationService;
     _awsOptions     = awsOptions.Value;
     _generalOptions = generalOptions.Value;
 }
Example #2
0
 public AwsAuthenticationService(IOptions <AwsAuthenticationOptions> awsAuthenticationOptions)
 {
     _awsAuthenticationOptions = awsAuthenticationOptions.Value;
 }