File was renamed from FlexJobApi.User.Application/UserInfos/Commands/UserInfoCommandHandler.cs |
| | |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | |
| | | namespace FlexJobApi.User.Application.UserInfos.Commands |
| | | namespace FlexJobApi.UserServer.Application.UserInfos.Commands |
| | | { |
| | | /// <summary> |
| | | /// 用户信息命令处理器 |
| | | /// </summary> |
| | | public class UserInfoCommandHandler( |
| | | IRepository<UserInfo> rep |
| | | IRepository<User> rep |
| | | ) : |
| | | IRequestHandler<SetUserInfoStatusCommand, int> |
| | | { |
| | | private readonly IRepository<UserInfo> rep = rep; |
| | | private readonly IRepository<User> rep = rep; |
| | | |
| | | /// <summary> |
| | | /// 设置用户信息状态 |