private void Populate()
		{
			CustomerPaging paging = new CustomerPaging(this.PagingControl1.PageIndex, this.PagingControl1.RecordsPerPage, Customer.FieldNameConstants.CustomerId, true);
			CustomerCollection customerCollection = CustomerCollection.RunSelect(x => true, paging);
			this.PagingControl1.ItemCount = paging.RecordCount;
			grdItem.DataSource = customerCollection;
			grdItem.DataBind();
			SessionHelper.LastCustomerListSearch = this.Request.Url.AbsoluteUri;
		}
        private void Populate()
        {
            CustomerPaging     paging             = new CustomerPaging(this.PagingControl1.PageIndex, this.PagingControl1.RecordsPerPage, Customer.FieldNameConstants.CustomerId, true);
            CustomerCollection customerCollection = CustomerCollection.RunSelect(x => true, paging);

            this.PagingControl1.ItemCount = paging.RecordCount;
            grdItem.DataSource            = customerCollection;
            grdItem.DataBind();
            SessionHelper.LastCustomerListSearch = this.Request.Url.AbsoluteUri;
        }