public ClientSecretValidator(IClientStore clients, SecretParser parser, SecretValidator validator, OwinEnvironmentService environment, IEventService events) { _clients = clients; _parser = parser; _validator = validator; _environment = environment; _events = events; }
public ScopeSecretValidator(IScopeStore scopes, SecretParser parsers, SecretValidator validator, OwinEnvironmentService environment, IEventService events) { _scopes = scopes; _environment = environment; _parser = parsers; _validator = validator; _events = events; }