public async Task <IActionResult> GetAllPaging([FromQuery] PagingParams pagingParams) { PagedList <DeliveryViewModel> paged = await _deliveryRepository.GetAllPagingAsync(pagingParams); Response.AddPagination(paged.CurrentPage, paged.PageSize, paged.TotalCount, paged.TotalPages); return(Ok(paged)); }