Files
Yi.Admin/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/IServices/IAccountService.cs

16 lines
558 B
C#
Raw Normal View History

2024-03-20 17:52:59 +08:00
using Volo.Abp.Application.Services;
using Yi.Framework.Rbac.Application.Contracts.Dtos.Account;
2024-01-19 17:45:11 +08:00
using Yi.Framework.Rbac.Domain.Shared.Dtos;
2024-01-17 16:31:01 +08:00
namespace Yi.Framework.Rbac.Application.Contracts.IServices
2023-12-11 09:55:12 +08:00
{
2024-03-20 17:52:59 +08:00
public interface IAccountService : IApplicationService
2023-12-11 09:55:12 +08:00
{
2024-04-29 17:50:51 +08:00
Task<UserRoleMenuDto> GetAsync();
2024-03-20 17:52:59 +08:00
Task<CaptchaImageDto> GetCaptchaImageAsync();
2024-01-19 17:45:11 +08:00
Task<object> PostLoginAsync(LoginInputVo input);
2024-04-29 17:50:51 +08:00
Task PostRegisterAsync(RegisterDto input);
Task<bool> RestPasswordAsync(Guid userId, RestPasswordDto input);
2023-12-11 09:55:12 +08:00
}
}