public static UserAppManager Create(IdentityFactoryOptions <UserAppManager> options, IOwinContext context) { var appcontext = context.Get <AspNetContext>(); var usuarioManager = new UserAppManager(new UserStore <IdentityUser>(appcontext)); return(usuarioManager); }
public AppSignInManager(UserAppManager userManager, IAuthenticationManager authenticationManager) : base(userManager, authenticationManager) { }