get ผู้สมัครสอบตามstatus
This commit is contained in:
parent
bd0f02feb1
commit
db2d92732c
3 changed files with 84 additions and 58 deletions
|
|
@ -411,7 +411,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
|
|||
}
|
||||
|
||||
candidate.RegistAddress = updated.RegistAddress;
|
||||
candidate.RegistSame = updated.RegistSame;
|
||||
candidate.RegistSame = updated.RegistSame == null ? null : updated.RegistSame;
|
||||
candidate.CurrentAddress = updated.CurrentAddress;
|
||||
|
||||
await _context.SaveChangesAsync();
|
||||
|
|
@ -457,7 +457,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
|
|||
candidate.MotherPrefix = prefix;
|
||||
}
|
||||
|
||||
candidate.Marry = updated.Marry;
|
||||
candidate.Marry = updated.Marry == null ? null : updated.Marry;
|
||||
candidate.MarryFirstName = updated.MarryFirstName;
|
||||
candidate.MarryLastName = updated.MarryLastName;
|
||||
candidate.MarryOccupation = updated.MarryOccupation;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue