Exemple #1
0
        public static UserAppManager Create(IdentityFactoryOptions <UserAppManager> options, IOwinContext context)
        {
            var appcontext = context.Get <AspNetContext>();

            var usuarioManager = new UserAppManager(new UserStore <IdentityUser>(appcontext));

            return(usuarioManager);
        }
Exemple #2
0
 public AppSignInManager(UserAppManager userManager, IAuthenticationManager authenticationManager) : base(userManager, authenticationManager)
 {
 }