| 1234567891011121314151617181920 |
- using BaseService.Systems.UserManagement.Dto;
- using System;
- 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);
- }
- }
|