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"); }
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"); }