Global.asax.cs
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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);
}
}
}