OpenAuth.Net/OpenAuth.Domain/Interface/IUserRepository.cs
yubaolee b4fc05a823 主页加载菜单按钮
重新修改了登陆逻辑
2015-05-22 17:45:18 +08:00

12 lines
231 B
C#

using System.Collections.Generic;
using OpenAuth.Domain.Model;
namespace OpenAuth.Domain.Interface
{
public interface IUserRepository
{
User FindByAccount(string account);
User FindById(string id);
}
}