Example #1
0
 public AdminController(MariageDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #2
0
 public HomeController(UserManager <MariageUser> userManager, MariageDbContext dbContext)
 {
     _userManager = userManager;
     _dbContext   = dbContext;
 }
Example #3
0
 public AccountController(SignInManager <MariageUser> signInManager, MariageDbContext dbContext)
 {
     _signInManager = signInManager;
     _dbContext     = dbContext;
 }