static T pagingLast<T>(List<T> list, int page, int limit) { var pagingList = paging<T>(list, page, limit); return pagingList.last; }