简历信息修改

IRC_NewDev
he 2024-11-05 13:07:24 +08:00
parent 702e20c834
commit 424a05c211
1 changed files with 6 additions and 0 deletions

View File

@ -162,6 +162,12 @@ namespace IRaCIS.Core.Application.Contracts
var info=await _doctorRepository.AddAsync(doctor,true);
await _userRepository.BatchUpdateNoTrackingAsync(x => x.EMail == inDto.EmailOrPhone, x => new User()
{
DoctorId = info.DoctorId,
});
result.DoctorId = info.Id;
result.ReviewStatus = info.ReviewStatus;
}