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