using System.Threading.Tasks; using GxPress.Repository.Interface; using GxPress.Request.Department; using GxPress.Result.Department; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using GxPress.Service.Interface.Department; using System.Collections.Generic; using GxPress.Auth; namespace GxPress.Api.AppControllers { [Route("api/app/department")] [ApiController] [Authorize] public class DepartmentController : ControllerBase { private readonly IDepartmentRepository _departmentRepository; private readonly IDepartmentService departmentService; private readonly ILoginContext _loginContext; public DepartmentController(IDepartmentRepository departmentRepository, IDepartmentService departmentService, ILoginContext _loginContext) { _departmentRepository = departmentRepository; this.departmentService = departmentService; this._loginContext = _loginContext; } /// /// 根据部门ID获取成员以及下级部门 /// /// /// [HttpPost("user-list")] public async Task GetDepartmentUserResult(DepartmentUserRequest request) { request.UserId = _loginContext.AccountId; return await departmentService.GetDepartmentUserResultAsync(request); } [HttpGet("{userId}")] public async Task> GetUserInDepartmentAsync(int userId) { return await departmentService.GetUserInDepartmentAsync(userId); } } }