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)