complete rollcallCase history details by employee

This commit is contained in:
2026-01-11 17:25:56 +03:30
parent 05d860795e
commit 8f6007835c
5 changed files with 136 additions and 7 deletions

View File

@@ -24,7 +24,7 @@ public class CaseHistoryController:ClientBaseController
}
[HttpGet("{titleId}")]
public async Task<IActionResult> GetDetails(string titleId, RollCallCaseHistorySearchModel searchModel)
public async Task<ActionResult<PagedResult<RollCallCaseHistoryDetail>>> GetDetails(string titleId, RollCallCaseHistorySearchModel searchModel)
{
return await _rollCallApplication.GetCaseHistoryDetails(_workshopId, titleId, searchModel);
}

View File

@@ -19,7 +19,7 @@
"sqlDebugging": true,
"dotnetRunMessages": "true",
"nativeDebugging": true,
"applicationUrl": "https://localhost:5004;http://localhost:5003;https://192.168.0.117:5006",
"applicationUrl": "https://localhost:5004;http://localhost:5003;",
"jsWebView2Debugging": false,
"hotReloadEnabled": true
},