public ResearchController(MovimDbContext context, IOptions <AppSettings> appSettings, IHostingEnvironment env)
 {
     _context     = context;
     _appSettings = appSettings.Value;
     _service     = new SurveyService();
     _env         = env;
 }
Esempio n. 2
0
 public AuthController(MovimDbContext context, IOptions <AppSettings> appSettings)
 {
     _context     = context;
     _appSettings = appSettings.Value;
     _service     = new AuthService(_appSettings);
 }
Esempio n. 3
0
 public ProjectController(MovimDbContext context, IOptions <AppSettings> appSettings)
 {
     _context     = context;
     _appSettings = appSettings.Value;
     _service     = new ProjectService();
 }
Esempio n. 4
0
 public PrototypeController(MovimDbContext context, IOptions <AppSettings> appSettings, IHostingEnvironment env)
 {
     _context     = context;
     _appSettings = appSettings.Value;
     _env         = env;
 }
Esempio n. 5
0
 public SurveyController(MovimDbContext context, IOptions<AppSettings> appSettings)
 {
     _context = context;
     _appSettings = appSettings.Value;
     _service = new SurveyService();
 }