ini leave groupList

This commit is contained in:
SamSys
2025-12-23 18:15:48 +03:30
parent 89de3162de
commit 59bbb7aae6
4 changed files with 189 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ public class LeaveController : ClientBaseController
public async Task<ActionResult<PagedResult<leaveListDto>>> GetLeaveList(LeaveListSearchModel searchModel)
{
searchModel.WorkshopId = _workshopId;
var leaveList = await _leaveApplication.GetList(searchModel);
return Ok(leaveList);
}