2020-12-20 03:06:43 +02:00
|
|
|
|
using IdentityServer.Domain.Entities;
|
|
|
|
|
using System.Threading.Tasks;
|
2020-12-20 00:18:53 +02:00
|
|
|
|
|
|
|
|
|
namespace IdentityServer.Domain.Repositories
|
|
|
|
|
{
|
|
|
|
|
public interface IIdentityRepository
|
|
|
|
|
{
|
2020-12-20 03:06:43 +02:00
|
|
|
|
Task<AppUser> GetAppUser(string userName, string password);
|
2020-12-20 00:18:53 +02:00
|
|
|
|
}
|
|
|
|
|
}
|