|
@@ -32,7 +32,7 @@ using Microsoft.AspNetCore.Mvc;
|
|
|
using Microsoft.Extensions.Caching.Distributed;
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
using Microsoft.Extensions.Options;
|
|
|
-
|
|
|
+using GxPress.Service.Interface.Department;
|
|
|
namespace GxPress.Api.WebControllers
|
|
|
{
|
|
|
/// <summary>
|
|
@@ -46,6 +46,7 @@ namespace GxPress.Api.WebControllers
|
|
|
private readonly JwtOptions _jwtOptions;
|
|
|
private readonly ILogger<UserController> _logger;
|
|
|
private readonly IUserRepository _userRepository;
|
|
|
+ private readonly IDepartmentService departmentService;
|
|
|
private readonly IDepartmentRepository _departmentRepository;
|
|
|
private readonly ILoginContext _loginContext;
|
|
|
private readonly IUserService _userService;
|
|
@@ -58,7 +59,7 @@ namespace GxPress.Api.WebControllers
|
|
|
private readonly IFriendsRepository friendsRepository;
|
|
|
public UserController(IUserRepository userRepository, IOptions<JwtOptions> jwtOptions,
|
|
|
ILogger<UserController> logger, IDepartmentRepository departmentRepository, ILoginContext loginContext,
|
|
|
- IUserService userService, IFileLibraryRepository fileLibraryRepository, IDistributedCache cache, IUserLoginRepository userLoginRepository, IAddressBookGroupRepository addressBookGroupRepository, IAddressBookGroupUserRepository _addressBookGroupUserRepository, IFeedbackRepository _feedbackRepository, IFriendsRepository friendsRepository)
|
|
|
+ IUserService userService, IFileLibraryRepository fileLibraryRepository, IDistributedCache cache, IUserLoginRepository userLoginRepository, IAddressBookGroupRepository addressBookGroupRepository, IAddressBookGroupUserRepository _addressBookGroupUserRepository, IFeedbackRepository _feedbackRepository, IFriendsRepository friendsRepository, IDepartmentService departmentService)
|
|
|
{
|
|
|
_userRepository = userRepository;
|
|
|
_departmentRepository = departmentRepository;
|
|
@@ -73,6 +74,7 @@ namespace GxPress.Api.WebControllers
|
|
|
this._addressBookGroupUserRepository = _addressBookGroupUserRepository;
|
|
|
this._feedbackRepository = _feedbackRepository;
|
|
|
this.friendsRepository = friendsRepository;
|
|
|
+ this.departmentService = departmentService;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 登录
|
|
@@ -443,7 +445,7 @@ namespace GxPress.Api.WebControllers
|
|
|
[HttpPost("user-list")]
|
|
|
public async Task<DepartmentUserResult> GetDepartmentUserResult(DepartmentUserRequest request)
|
|
|
{
|
|
|
- return await _departmentRepository.GetDepartmentUserResultAsync(request);
|
|
|
+ return await departmentService.GetDepartmentUserResultAsync(request);
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 添加意见反馈
|