no message
Some checks failed
release-dev / release-dev (push) Failing after 11s

This commit is contained in:
harid 2025-11-24 16:01:48 +07:00
parent c1416a2a33
commit cf9ae391a5
2 changed files with 3 additions and 3 deletions

View file

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

View file

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