private void BindPrices() { var skuEntry = CatalogContext.Current.GetCatalogEntry(this.SkuList.Items[0].Value); var prices = PriceHelper.BuildValidPrices(skuEntry.ID) .Select( p => new { From = p.ValidFrom, To = p.ValidUntil, Value = p.UnitPrice.Amount.ToString("# ##0.00"), Currency = p.UnitPrice.Currency.CurrencyCode, Type = ((CustomerPricing.PriceType)p.CustomerPricing.PriceTypeId).ToString(), PriceCode = p.CustomerPricing.PriceCode }); this.SkuPrices.DataSource = prices; this.SkuPrices.DataBind(); }