From 4c7599b568af6c4bfb4d5492bfdfc089785ab174 Mon Sep 17 00:00:00 2001 From: mahan Date: Tue, 13 Jan 2026 18:50:18 +0330 Subject: [PATCH] add print to rollcall case history --- .../Client/Controllers/RollCall/CaseHistoryController.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/ServiceHost/Areas/Client/Controllers/RollCall/CaseHistoryController.cs b/ServiceHost/Areas/Client/Controllers/RollCall/CaseHistoryController.cs index 9ad0ee58..cb2e3ff5 100644 --- a/ServiceHost/Areas/Client/Controllers/RollCall/CaseHistoryController.cs +++ b/ServiceHost/Areas/Client/Controllers/RollCall/CaseHistoryController.cs @@ -43,9 +43,12 @@ public class CaseHistoryController : ClientBaseController return _rollCallApplication.ManualEdit(command); } - // [HttpGet("print")] - // public ActionResult<> - + [HttpGet("print")] + public async Task>> GetPrintDetails(string titleId, + RollCallCaseHistorySearchModel searchModel) + { + return await _rollCallApplication.GetCaseHistoryDetails(_workshopId, titleId, searchModel); + } // [HttpGet("edit")] // public ActionResult<> GetEditDetails(string date,long employeeId)