コード例 #1
0
ファイル: RecipeController.cs プロジェクト: jatpannu/cookbook
        public ActionResult Recipe12()
        {
            ViewBag.Title = "Recipe 12";
            ViewBag.Description = "Not implemented yet";

            string token = Session["inbloomtoken"].ToString();

            Recipe recipe12 = new Recipe12();
            ViewBag.Data = recipe12.RunRecipe(token);

            return View("Index");
        }
コード例 #2
0
        public ActionResult Recipe12()
        {
            ViewBag.Title = "Recipe 12";
            ViewBag.Description = "List Parent Contact Information for an Entire Class";

            string token = Session["inbloomtoken"].ToString();

            Recipe recipe12 = new Recipe12();
            ViewBag.Data = recipe12.RunRecipe(token);

            return View("Index");
        }