map method
Implementation
void map(GridResult other) {
this.items = other.items as List<TListItem>;
this.hasMoreItems = other.hasMoreItems;
this.currentPage = other.currentPage;
this.startPage = other.startPage;
this.endPage = other.endPage;
this.pageCount = other.pageCount;
this.pageSize = other.pageSize;
this.rowCount = other.rowCount;
this.hasPreviousPage = other.hasPreviousPage;
this.hasNextPage = other.hasNextPage;
this.hasMultiplePages = other.hasMultiplePages;
this.firstRowOnPage = other.firstRowOnPage;
this.lastRowOnPage = other.lastRowOnPage;
this.hasItems = other.hasItems;
this.additionalData = other.additionalData;
}