fix bug เพิ่ม-แก้ไขข้อมูลประวัติการศึกษาไม่อัปเดต #2022, #2025
Some checks failed
release-dev / release-dev (push) Failing after 13s

This commit is contained in:
harid 2025-11-24 10:37:26 +07:00
parent 079641c7ad
commit c1416a2a33
2 changed files with 3 additions and 0 deletions

View file

@ -1206,6 +1206,7 @@ namespace BMA.EHR.Placement.Service.Controllers
{
PlacementProfile = profile,
EducationLevelId = req.EducationLevelId,
EducationLevelName = req.EducationLevel,
PositionPath = positionPath,
Institute = req.Institute,
Degree = req.Degree,
@ -1248,6 +1249,7 @@ namespace BMA.EHR.Placement.Service.Controllers
return Error(GlobalMessages.EducationNotFound, 404);
education.EducationLevelId = req.EducationLevelId;
education.EducationLevelName = req.EducationLevel;
education.PositionPath = positionPath;
education.Institute = req.Institute;
education.Degree = req.Degree;

View file

@ -23,6 +23,7 @@ namespace BMA.EHR.Placement.Service.Requests
public DateTime? FinishDate { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public string? EducationLevel { get; set; }
}
}