public AuthRepository() { _ctx = new NotificacionesContext(); var store = new UserStore<ApplicationUser>(_ctx); _userManager = new UserManager<ApplicationUser>(store); _roleManaller = new RoleManager<IdentityRole>(new RoleStore<IdentityRole>(_ctx)); }
public AuthRepository() { _ctx = new NotificacionesContext(); var store = new UserStore <ApplicationUser>(_ctx); _userManager = new UserManager <ApplicationUser>(store); _roleManaller = new RoleManager <IdentityRole>(new RoleStore <IdentityRole>(_ctx)); }
public ClienteRepository() { _ctx = new NotificacionesContext(); }
public NotificacionesRepository() { _ctx = new NotificacionesContext(); clienteRepo = new ClienteRepository(); }