IUserAppService.cs 607 B

1234567891011121314151617181920
  1. using BaseService.Systems.UserManagement.Dto;
  2. using System;
  3. using System.Threading.Tasks;
  4. using Volo.Abp.Application.Dtos;
  5. using Volo.Abp.Application.Services;
  6. using Volo.Abp.Identity;
  7. namespace BaseService.Systems.UserManagement
  8. {
  9. public interface IUserAppService : IApplicationService
  10. {
  11. Task<BaseIdentityUserDto> Get(Guid id);
  12. Task<IdentityUserDto> Create(BaseIdentityUserCreateDto input);
  13. Task<IdentityUserDto> UpdateAsync(Guid id, BaseIdentityUserUpdateDto input);
  14. Task<PagedResultDto<BaseIdentityUserDto>> GetAll(GetBaseIdentityUsersInput input);
  15. }
  16. }