Пример #1
0
        public ActionResult Recipe8()
        {
            ViewBag.Title = "Recipe 8";
            ViewBag.Description = "Enroll a student to section. Displays the id of the StudentSectionAssociation";

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

            Recipe recipe8 = new Recipe8();
            ViewBag.Data = recipe8.RunRecipe(token);

            return View("Index");
        }
Пример #2
0
        public ActionResult Recipe8()
        {
            ViewBag.Title = "Recipe 8";
            ViewBag.Description = "Enroll a Student in a Section";

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

            Recipe recipe8 = new Recipe8();
            ViewBag.Data = recipe8.RunRecipe(token);

            return View("Index");
        }