示例#1
0
 public ElectGoogleClient([NotNull] ElectLocationGoogleOptions configuration) : this()
 {
     Options = configuration;
 }
示例#2
0
 public static IServiceCollection AddElectLocationGoogle(this IServiceCollection services, [NotNull] ElectLocationGoogleOptions configuration)
 {
     return(services.AddElectLocationGoogle(_ =>
     {
         _.GoogleApiKey = configuration.GoogleApiKey;
     }));
 }