Global.asax.cs 1.2 KB
using CWA.CpoOnline.Models;
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.EntityFramework;
using Microsoft.AspNet.Identity.Owin;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;

namespace CWA.CpoOnline
{
	public class MvcApplication : System.Web.HttpApplication
	{
		protected void Application_Start()
		{
			//using (var db = new ApplicationDbContext())
			//{

			//	var store = new UserStore<ApplicationUser>(db);
			//	var manager = new ApplicationUserManager(store);
			//	var user = new ApplicationUser()
			//	{
			//		Email = "kbrothers@uncommonsolutions.com",
			//		UserName = "kbrothers@uncommonsolutions.com",
			//		FirstName = "Kyle",
			//		LastName = "Brothers",
			//		EmailConfirmed = true,
			//		Created = DateTime.Now
			//	};
			//	manager.Create(user, "TestPass45!");
			//}
			AreaRegistration.RegisterAllAreas();
			GlobalConfiguration.Configure(WebApiConfig.Register);
			FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
			RouteConfig.RegisterRoutes(RouteTable.Routes);
			BundleConfig.RegisterBundles(BundleTable.Bundles);
		}
	}
}