コード例 #1
0
ファイル: Resource.cs プロジェクト: anthrax3/LinqToRest
 public Resource(string name, IRestQueryableFactory restQueryableFactory, IHttpService httpService, IUriFactory uriFactory)
 {
     _name = name;
     _restQueryableFactory = restQueryableFactory;
     _httpService          = httpService;
     _uriFactory           = uriFactory;
 }
コード例 #2
0
ファイル: Endpoint.cs プロジェクト: anthrax3/LinqToRest
 public Endpoint(IRestQueryableFactory restQueryableFactory, IHttpService httpService, IUriFactory uriFactory)
 {
     _restQueryableFactory = restQueryableFactory;
     _httpService          = httpService;
     _uriFactory           = uriFactory;
 }