mirror of
https://dev.azure.com/tstanciu94/Tuitio/_git/Tuitio
synced 2025-03-28 23:52:20 +02:00
12 lines
288 B
C#
12 lines
288 B
C#
using IdentityServer.Domain.Entities;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IdentityServer.Domain.Repositories
|
|
{
|
|
public interface IIdentityRepository
|
|
{
|
|
Task<AppUser> GetAppUser(int userId);
|
|
Task<AppUser> GetAppUser(string userName, string password);
|
|
}
|
|
}
|