Example #1
0
 public RoleController()
 {
     context = new ApplicationIdentityContext();
 }
Example #2
0
 public AccountController()
 {
     context = new ApplicationIdentityContext();
 }
Example #3
0
 public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager )
 {
     UserManager = userManager;
     SignInManager = signInManager;
     context = new ApplicationIdentityContext();
 }
Example #4
0
 public UserController()
 {
     context = ApplicationIdentityContext.Create();
 }