21 lines
475 B
C#
21 lines
475 B
C#
|
|
using New_College.IRepository.Base;
|
|
using New_College.Model.Models;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.IRepository
|
|
{
|
|
/// <summary>
|
|
/// IuserRepository
|
|
/// </summary>
|
|
public interface ICasdoorUserRepository : IBaseRepository<CasdoorUser>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 注销账户
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
Task<bool> AccountCancel(string id);
|
|
}
|
|
} |