You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
763 B
27 lines
763 B
1 year ago
|
using BaseService.Systems.UserManagement.Dto;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Threading.Tasks;
|
||
|
using Volo.Abp.Application.Dtos;
|
||
|
using Volo.Abp.Application.Services;
|
||
|
using Volo.Abp.Identity;
|
||
|
|
||
|
namespace BaseService.Systems.UserManagement
|
||
|
{
|
||
|
public interface IUserAppService : IApplicationService
|
||
|
{
|
||
|
Task<BaseIdentityUserDto> Get(Guid id);
|
||
|
|
||
|
Task<IdentityUserDto> Create(BaseIdentityUserCreateDto input);
|
||
|
|
||
|
Task<IdentityUserDto> UpdateAsync(Guid id, BaseIdentityUserUpdateDto input);
|
||
|
|
||
|
Task<PagedResultDto<BaseIdentityUserDto>> GetAll(GetBaseIdentityUsersInput input);
|
||
|
|
||
|
Task<IdentityUserDto> GetCurrentUserAsync();
|
||
|
|
||
|
Task<IdentityUserDto> ResetPasswordAsync(Guid userId);
|
||
|
|
||
|
}
|
||
|
}
|