Ejemplo n.º 1
0
        public static AppSignInManager Create(IdentityFactoryOptions <AppSignInManager> options, IOwinContext context)
        {
            AppUserManager userManager = context.GetUserManager <AppUserManager>();

            return(new AppSignInManager(userManager, context.Authentication));
        }
Ejemplo n.º 2
0
 public AppSignInManager(AppUserManager userManager, IAuthenticationManager authentication)
     : base(userManager, authentication)
 {
 }