Exemplo n.º 1
0
        private void BindCountDown()
        {
            DbQueryResult countDownList = PromoteHelper.GetCountManagerDownList(new GroupBuyQuery
            {
                Title     = this.Title,
                PageIndex = this.pager.PageIndex,
                PageSize  = this.pager.PageSize,
                SortBy    = "DisplaySequence",
                SortOrder = SortAction.Desc
            });

            this.grdCountDownsList.DataSource = countDownList.Data;
            this.grdCountDownsList.DataBind();
            this.pager.TotalRecords  = countDownList.TotalRecords;
            this.pager1.TotalRecords = countDownList.TotalRecords;
        }