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 Get(Guid id); Task Create(BaseIdentityUserCreateDto input); Task UpdateAsync(Guid id, BaseIdentityUserUpdateDto input); Task> GetAll(GetBaseIdentityUsersInput input); Task GetCurrentUserAsync(); Task ResetPasswordAsync(Guid userId); } }