Example #1
0
        public ARPager(int pageSize, IARPaginable source)
        {
            this.source      = source;
            this.pageSize    = pageSize;
            this.currentPage = currentPage;

            UpdateUIData();
        }
Example #2
0
 /// <summary>
 /// Paginates using the specified <see cref="IARPaginable"/>.
 /// </summary>
 public static IPager Paginate(int pageSize, IARPaginable q)
 {
     return(new ARPager(pageSize, q));
 }