Ejemplo n.º 1
0
        public static MyApplicationUserManager Create(IdentityFactoryOptions <MyApplicationUserManager> options, IOwinContext context)
        {
            var store   = new UserStore <MyApplicationUser>(context.Get <MyApplicationDbContext>());
            var manager = new MyApplicationUserManager(store);

            return(manager);
        }
Ejemplo n.º 2
0
 public MyApplicationSignInManager(MyApplicationUserManager userManager, IAuthenticationManager authenticationManager) :
     base(userManager, authenticationManager)
 {
 }