public AuthenticateController(UmaAuthenticationWebsiteOptions options, IAuthenticationService authenticationService) : base(authenticationService)
 {
     _options = options;
     _identityServerClientFactory = new IdentityServerClientFactory();
     _jwsParserFactory            = new JwsParserFactory();
 }
 public ResourcesController(IAuthenticationService authenticationService, IResourcesActions resourcesActions, UmaAuthenticationWebsiteOptions options) : base(authenticationService)
 {
     _resourcesActions = resourcesActions;
     _options          = options;
 }