Update GetTimeStampHistoryAsync call to include pagination and keyword filtering
All checks were successful
Build & Deploy Leave Service / build (push) Successful in 2m8s
All checks were successful
Build & Deploy Leave Service / build (push) Successful in 2m8s
This commit is contained in:
parent
4650f7a2ab
commit
4562029e6e
1 changed files with 1 additions and 1 deletions
|
|
@ -1762,7 +1762,7 @@ namespace BMA.EHR.Leave.Service.Controllers
|
|||
// var test = await _processUserTimeStampRepository.GetTimeStampHistoryAsync(userId, year);
|
||||
// return Success(test);
|
||||
|
||||
var data = (await _processUserTimeStampRepository.GetTimeStampHistoryAsync(userId, year))
|
||||
var data = (await _processUserTimeStampRepository.GetTimeStampHistoryAsync(userId, year, page, pageSize, keyword))
|
||||
.Select(d => new CheckInHistoryDto
|
||||
{
|
||||
CheckInId = d.Id,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue