From bc491eec18de326ea40f41901141e0a04ecdcfec Mon Sep 17 00:00:00 2001 From: mahan Date: Thu, 5 Feb 2026 13:55:02 +0330 Subject: [PATCH] add EditDetails endpoint to SalaryAidController for salary aid detail retrieval --- ServiceHost/Areas/Client/Controllers/SalaryAidController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ServiceHost/Areas/Client/Controllers/SalaryAidController.cs b/ServiceHost/Areas/Client/Controllers/SalaryAidController.cs index 5af239b4..c4f3b7f5 100644 --- a/ServiceHost/Areas/Client/Controllers/SalaryAidController.cs +++ b/ServiceHost/Areas/Client/Controllers/SalaryAidController.cs @@ -60,6 +60,7 @@ public class SalaryAidController:ClientBaseController return result; } + [HttpGet("edit")] public ActionResult EditDetails(long id) { var data = _salaryAidApplication.GetDetails(id);