Ejemplo n.º 1
0
        public UsuarioDA()
        {
            _context  = new DotNetStoreContext();
            userStore = new UserStore <IdentityUser>(_context);
            rolStore  = new RoleStore <IdentityRole>(_context);

            //AD -> productStore = new ProductoDA();
            //LN -> productoManager = new ProductoManager(productoStore);

            userManager = new UserManager <IdentityUser>(userStore);
            rolManager  = new RoleManager <IdentityRole>(rolStore);
        }