public AccountController(UserManager <AppUser> userManager, SignInManager <AppUser> signInManager, VivaniDbContext context, IConfiguration configuration) { _context = context; _signInManager = signInManager; _userManager = userManager; _configuration = configuration; }
public HomeController(SignInManager <AppUser> sign, IPasswordHasher <AppUser> hash, VivaniDbContext context, UserManager <AppUser> user, RoleManager <IdentityRole> role, IConfiguration configuration) { _context = context; _user = user; _role = role; _configuration = configuration; _hash = hash; }
public WhyUsController(VivaniDbContext context) { _context = context; }
public ContactController(VivaniDbContext context) { _context = context; }
public ContactController(VivaniDbContext context, IHostingEnvironment env) { _context = context; _env = env; }
public AboutController(VivaniDbContext context) { _context = context; }