public async Task <IActionResult> GetPaged([FromQuery] int page, int pageSize, CancellationToken cancellationToken) { return(Ok(await service.GetPagedAsync(page, pageSize, cancellationToken))); }