public OAuth20Saga(IClientRepository clientRepo, IUserRepository userRepo, IPermissionScopeRepository scopeRepo, OAuth20Service oauth20Service) { _clientRepository = clientRepo; _userRepository = userRepo; _scopeRepository = scopeRepo; _oauth20Service = oauth20Service; }
public InteractionGrantSaga(IClientRepository clientRepo, IUserRepository userRepo, IPermissionScopeRepository scopeRepo, OAuth20Service oauth20Service) : base(clientRepo, userRepo, scopeRepo, oauth20Service) { }