예제 #1
0
 public RestQueryableFactory(IHttpService httpService, IQueryModelTranslator queryModelTranslator)
 {
     _httpService          = httpService;
     _queryModelTranslator = queryModelTranslator;
 }
예제 #2
0
 public RestQueryExecutor(Uri uri, IQueryModelTranslator queryModelTranslator, IHttpService httpService)
 {
     _uri = uri;
     _queryModelTranslator = queryModelTranslator;
     _httpService          = httpService;
 }