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

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