diff --git a/BMA.EHR.Placement.Service/Controllers/PlacementController.cs b/BMA.EHR.Placement.Service/Controllers/PlacementController.cs index 67d72cb7..62b9bbce 100644 --- a/BMA.EHR.Placement.Service/Controllers/PlacementController.cs +++ b/BMA.EHR.Placement.Service/Controllers/PlacementController.cs @@ -1206,7 +1206,7 @@ namespace BMA.EHR.Placement.Service.Controllers { PlacementProfile = profile, EducationLevelId = req.EducationLevelId, - EducationLevelName = req.EducationLevel, + EducationLevelName = req.EducationLevelName, PositionPath = positionPath, Institute = req.Institute, Degree = req.Degree, @@ -1249,7 +1249,7 @@ namespace BMA.EHR.Placement.Service.Controllers return Error(GlobalMessages.EducationNotFound, 404); education.EducationLevelId = req.EducationLevelId; - education.EducationLevelName = req.EducationLevel; + education.EducationLevelName = req.EducationLevelName; education.PositionPath = positionPath; education.Institute = req.Institute; education.Degree = req.Degree; diff --git a/BMA.EHR.Placement.Service/Requests/PersonEducationRequest.cs b/BMA.EHR.Placement.Service/Requests/PersonEducationRequest.cs index a2b05ff6..31ac48ab 100644 --- a/BMA.EHR.Placement.Service/Requests/PersonEducationRequest.cs +++ b/BMA.EHR.Placement.Service/Requests/PersonEducationRequest.cs @@ -23,7 +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; } + public string? EducationLevelName { get; set; } } } \ No newline at end of file