示例#1
0
        private void BindVouchers()
        {
            DbQueryResult newVouchers = VoucherHelper.GetNewVouchers(new Pagination
            {
                PageSize  = this.pager.PageSize,
                PageIndex = this.pager.PageIndex
            });

            this.grdVouchers.DataSource = newVouchers.Data;
            this.grdVouchers.DataBind();
            this.pager.TotalRecords = newVouchers.TotalRecords;
        }