Esempio n. 1
0
 public AirportsHttpService(string baseUrl, string url, IHttpGetService <AirportsJsonGetResponse> service) : base(
         baseUrl, url, service)
 {
 }
Esempio n. 2
0
 // to be used in the service factory somewhere
 protected HttpService(string baseUrl, string url, IHttpGetService <TEntity> service)
 {
     BaseUrl    = baseUrl;
     GetUrl     = url;
     GetService = service;
 }