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