Exemplo n.º 1
0
 public RequiredInfoController(IHostingEnvironment hostingEnvironment)
 {
     // _context = dbCon;
     _context            = OurDBContextFactory.Create();
     _hostingEnvironment = hostingEnvironment;
 }
Exemplo n.º 2
0
 public SignUpController()
 {
     _context = OurDBContextFactory.Create();
 }
Exemplo n.º 3
0
 public AdditionalInfoController(Microsoft.AspNetCore.Hosting.IHostingEnvironment hostingEnvironment)
 {
     _context            = OurDBContextFactory.Create();
     _hostingEnvironment = hostingEnvironment;
 }