mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-19 02:24:19 +01:00
8 lines
308 B
C#
8 lines
308 B
C#
namespace DotBased.AspNet.Authority.Interfaces;
|
|
|
|
public interface IUserRepository<TUser, TId> : IVersionRepository<TUser>, ISecurityVersionRepository<TUser> where TUser : class where TId : IEquatable<TId>
|
|
{
|
|
public Task<TUser?> GetUserByIdAsync(TId id);
|
|
|
|
public Task<TId> GetUserIdAsync(TUser user);
|
|
} |