Example #1
0
 public CityQuery(IRepository <City> repository, ExternalAccessSettings externalApiSettings) : base(repository)
 {
     this.UseAuthenticate = true;
     this.AuthenticateApi = externalApiSettings.AuthenticateApi;
 }
Example #2
0
 public StateQuery(IRepository <State> repository, ExternalAccessSettings externalApiSettings) : base(repository)
 {
     this.UseAuthenticate = false;
     this.AuthenticateApi = externalApiSettings.AuthenticateApi;
 }