mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
14 lines
293 B
C#
14 lines
293 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace OpenAuth.Domain.Interface
|
|
{
|
|
public interface IUserRepository :IRepository<User>
|
|
{
|
|
User FindByAccount(string account);
|
|
User FindById(string id);
|
|
|
|
IEnumerable<User> LoadUsers();
|
|
|
|
}
|
|
} |