public override string GetItemLabel() { var label = Name; if (PriceAdjustment.HasValue()) { label += " ({0})".FormatWith(PriceAdjustment); } return(label); }
public override string GetItemLabel() { var label = Name; if (QuantityInfo > 1) { label = "{0} x {1}".FormatCurrentUI(QuantityInfo, label); } if (PriceAdjustment.HasValue()) { label += " ({0})".FormatWith(PriceAdjustment); } return(label); }