public RequiredInfoController(IHostingEnvironment hostingEnvironment) { // _context = dbCon; _context = OurDBContextFactory.Create(); _hostingEnvironment = hostingEnvironment; }
public SignUpController() { _context = OurDBContextFactory.Create(); }
public AdditionalInfoController(Microsoft.AspNetCore.Hosting.IHostingEnvironment hostingEnvironment) { _context = OurDBContextFactory.Create(); _hostingEnvironment = hostingEnvironment; }