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); }