Beispiel #1
0
        public ActionResult Recipe9()
        {
            ViewBag.Title = "Recipe 9";
            ViewBag.Description = "Name and Id of students matching query operators";

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

            Recipe recipe9 = new Recipe9();
            ViewBag.Data = recipe9.RunRecipe(token);

            return View("Index");
        }
Beispiel #2
0
        public ActionResult Recipe9()
        {
            ViewBag.Title = "Recipe 9";
            ViewBag.Description = "Find a Student by Criteria";

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

            Recipe recipe9 = new Recipe9();
            ViewBag.Data = recipe9.RunRecipe(token);

            return View("Index");
        }