public UserAccountsController(qcdbContext context)
 {
     _context = context;
 }
 public UserContactsController(qcdbContext context)
 {
     _context = context;
 }
Exemple #3
0
 public LoginController(ILoginService loginService, qcdbContext context)
 {
     _loginService = loginService;
     _context      = context;
 }
 public LoginService(IOptions <AppSettings> appSettings, qcdbContext context)
 {
     _context     = context;
     _appSettings = appSettings.Value;
 }