public ActionResult Intros() { var config = new Configuration(); config.SeedDebug(context); return View(); }
// GET: Home public ActionResult Index() { var qs = Request.QueryString; if (qs["seed"] != null) { var config = new Configuration(); config.SeedDebug(_context); } return View(); }