using System; using System.Collections.Generic; using System.Linq; using System.Text; using Taloyhtio.GeneralSSO.Server.CodeFiles.Entities; namespace Taloyhtio.GeneralSSO.Server.CodeFiles.Repositories { public interface IClientAuthorizationRepository : IRepository { IEnumerable GetNotExpiredBy(string clientIdentifier, string userId, DateTime issuedUtc); IEnumerable GetNotExpiredBy(string clientIdentifier, string userId, string scope); } }