Ejemplo n.º 1
0
        public ActionResult Intros()
        {
            var config = new Configuration();
            config.SeedDebug(context);

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

            return View();
        }