コード例 #1
0
ファイル: RecipesList.cs プロジェクト: lbsbv/vzaar-api-net
		public RecipesList (Client client)
		{
			records = new RecordsList ("ingest_recipes", client);
			Page = new List<Recipe>();
		}
コード例 #2
0
ファイル: RecipesList.cs プロジェクト: lbsbv/vzaar-api-net
		public static IEnumerable<Recipe> EachItem(Client client) {
			return RecipesList.EachItem (new Dictionary<string, string> (), client);
		}
コード例 #3
0
ファイル: RecipesList.cs プロジェクト: lbsbv/vzaar-api-net
		public static RecipesList Paginate(Client client){
			return RecipesList.Paginate (new Dictionary<string, string> (), client);
		}