From c1416a2a336d76649d3d9459432d749a818e34e7 Mon Sep 17 00:00:00 2001 From: harid Date: Mon, 24 Nov 2025 10:37:26 +0700 Subject: [PATCH 1/2] =?UTF-8?q?fix=20bug=20=E0=B9=80=E0=B8=9E=E0=B8=B4?= =?UTF-8?q?=E0=B9=88=E0=B8=A1-=E0=B9=81=E0=B8=81=E0=B9=89=E0=B9=84?= =?UTF-8?q?=E0=B8=82=E0=B8=82=E0=B9=89=E0=B8=AD=E0=B8=A1=E0=B8=B9=E0=B8=A5?= =?UTF-8?q?=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B8=A7=E0=B8=B1=E0=B8=95=E0=B8=B4?= =?UTF-8?q?=E0=B8=81=E0=B8=B2=E0=B8=A3=E0=B8=A8=E0=B8=B6=E0=B8=81=E0=B8=A9?= =?UTF-8?q?=E0=B8=B2=E0=B9=84=E0=B8=A1=E0=B9=88=E0=B8=AD=E0=B8=B1=E0=B8=9B?= =?UTF-8?q?=E0=B9=80=E0=B8=94=E0=B8=95=20#2022,=20#2025?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BMA.EHR.Placement.Service/Controllers/PlacementController.cs | 2 ++ BMA.EHR.Placement.Service/Requests/PersonEducationRequest.cs | 1 + 2 files changed, 3 insertions(+) diff --git a/BMA.EHR.Placement.Service/Controllers/PlacementController.cs b/BMA.EHR.Placement.Service/Controllers/PlacementController.cs index d0a10879..67d72cb7 100644 --- a/BMA.EHR.Placement.Service/Controllers/PlacementController.cs +++ b/BMA.EHR.Placement.Service/Controllers/PlacementController.cs @@ -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; diff --git a/BMA.EHR.Placement.Service/Requests/PersonEducationRequest.cs b/BMA.EHR.Placement.Service/Requests/PersonEducationRequest.cs index 380111d5..a2b05ff6 100644 --- a/BMA.EHR.Placement.Service/Requests/PersonEducationRequest.cs +++ b/BMA.EHR.Placement.Service/Requests/PersonEducationRequest.cs @@ -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; } } } \ No newline at end of file From cf9ae391a59403a11b92e646fd0a2d13807132a1 Mon Sep 17 00:00:00 2001 From: harid Date: Mon, 24 Nov 2025 16:01:48 +0700 Subject: [PATCH 2/2] no message --- BMA.EHR.Placement.Service/Controllers/PlacementController.cs | 4 ++-- BMA.EHR.Placement.Service/Requests/PersonEducationRequest.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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