From db32b1e6eaaabc84cd20c9ceb8685c38efb58845 Mon Sep 17 00:00:00 2001 From: mahan Date: Thu, 5 Feb 2026 11:50:23 +0330 Subject: [PATCH] set WorkshopId in search model for salary aid list 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 5cb85812..6851acf3 100644 --- a/ServiceHost/Areas/Client/Controllers/SalaryAidController.cs +++ b/ServiceHost/Areas/Client/Controllers/SalaryAidController.cs @@ -22,6 +22,7 @@ public class SalaryAidController:ClientBaseController [HttpGet] public ActionResult GetList([FromQuery]SalaryAidSearchViewModel searchModel) { + searchModel.WorkshopId = _workshopId; var result = _salaryAidApplication.GetSearchListAsGrouped(searchModel); return Ok(result); }