예제 #1
0
        private void BindChannelGrade()
        {
            Channel entity = new Channel();

            Globals.EntityCoding(entity, true);
            entity.PageIndex = this.pager.PageIndex;
            entity.PageSize  = this.pager.PageSize;
            DbQueryResult ChannelListRequest = DistributorGradeBrower.GetChannelListGradeRequest(entity);

            this.rptChannellist.DataSource = ChannelListRequest.Data;
            this.rptChannellist.DataBind();
            this.pager.TotalRecords = ChannelListRequest.TotalRecords;
        }