Ejemplo n.º 1
0
 public UserController(UserManager <AppIdentityUser> userManager, SignInManager <AppIdentityUser> signInManager, RoleManager <AppIdentityRole> roleManager, GostieContext gostieContext)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _gostieContext = gostieContext;
     _roleManager   = roleManager;
 }
Ejemplo n.º 2
0
 public HomeController(GostieContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public ManagementController(GostieContext context, AppIdentityDbContext idcontext)
 {
     _context   = context;
     _idcontext = idcontext;
 }