mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 02:29:24 +08:00
主页加载菜单按钮
重新修改了登陆逻辑
This commit is contained in:
12
OpenAuth.Domain/Interface/IMenuRepository.cs
Normal file
12
OpenAuth.Domain/Interface/IMenuRepository.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using OpenAuth.Domain.Model;
|
||||
|
||||
namespace OpenAuth.Domain.Interface
|
||||
{
|
||||
public interface IMenuRepository
|
||||
{
|
||||
}
|
||||
}
|
@@ -1,9 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
using OpenAuth.Domain.Model;
|
||||
|
||||
namespace OpenAuth.Domain.Interface
|
||||
{
|
||||
public interface IUserRepository
|
||||
{
|
||||
User FindBy(string username);
|
||||
User FindByAccount(string account);
|
||||
User FindById(string id);
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user