public SSOController(ISSOAuthService ssoService, IUserService userService, IStudentService studentService, IJwtHelper jwtHelper) { _ssoService = ssoService; _userService = userService; _studentService = studentService; _jwtHelper = jwtHelper; }
public SSOController(ISSOAuthService ssoService, IUserService userService, IOptions <AppSettings> config) { _ssoService = ssoService; _userService = userService; _config = config.Value; }
public SSOController(ISSOAuthService ssoService, IUserService userService) { _ssoService = ssoService; _userService = userService; }