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.
48 lines
1.3 KiB
48 lines
1.3 KiB
//using BaseService.Controllers;
|
|
//using BaseService.Systems.UserManagement;
|
|
//using Microsoft.AspNetCore.Mvc;
|
|
//using System;
|
|
//using System.Threading.Tasks;
|
|
//using Volo.Abp.Application.Dtos;
|
|
//using Volo.Abp.Identity;
|
|
|
|
//namespace BaseService.HttpApi.Systems
|
|
//{
|
|
// [Area("base")]
|
|
// [Route("api/base/user")]
|
|
// public class UserController: BaseServiceController,IUserAppService
|
|
// {
|
|
// private readonly IUserAppService _userAppService;
|
|
|
|
// public UserController(IUserAppService userAppService)
|
|
// {
|
|
// _userAppService = userAppService;
|
|
// }
|
|
|
|
// [HttpPost]
|
|
// public Task<IdentityUserDto> Create(IdentityUserCreateDto input)
|
|
// {
|
|
// return _userAppService.Create(input);
|
|
// }
|
|
|
|
// [HttpGet]
|
|
// [Route("{id}")]
|
|
// public Task<IdentityUserDto> Get(Guid id)
|
|
// {
|
|
// return _userAppService.Get(id);
|
|
// }
|
|
|
|
// [HttpGet]
|
|
// public Task<PagedResultDto<IdentityUserDto>> GetAll(GetIdentityUsersInput input)
|
|
// {
|
|
// return _userAppService.GetAll(input);
|
|
// }
|
|
|
|
// [HttpPut]
|
|
// [Route("{id}")]
|
|
// public Task<IdentityUserDto> UpdateAsync(Guid id, IdentityUserUpdateDto input)
|
|
// {
|
|
// return _userAppService.UpdateAsync(id, input);
|
|
// }
|
|
// }
|
|
//}
|
|
|