コード例 #1
0
ファイル: HomeController.cs プロジェクト: Sweeden/donar
        public ActionResult Index()
        {
            ViewBag.Message = "Modify this template to jump-start your ASP.NET MVC application.";

            //InitRepo.Setup();
            var x  = new DomainSetup();

            return View(new IndexModel());
        }
コード例 #2
0
ファイル: Global.asax.cs プロジェクト: gdfuentes/donar
        protected void Application_Start()
        {
            AreaRegistration.RegisterAllAreas();

            WebApiConfig.Register(GlobalConfiguration.Configuration);
            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
            RouteConfig.RegisterRoutes(RouteTable.Routes);
            BundleConfig.RegisterBundles(BundleTable.Bundles);
            AuthConfig.RegisterAuth();

            var x = new DomainSetup();
        }