16 lines
445 B
C#
16 lines
445 B
C#
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 IClientRepository : IRepository<Client, int>
|
|
{
|
|
Client GetByClientId(string clientIdentifier);
|
|
Client GetByName(string name);
|
|
Client GetByClientSecret(string clientSecret);
|
|
}
|
|
}
|