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