/// <summary> /// Sorts and returns a description of a statue /// </summary> /// <param name="statue"> /// Statue to get description of /// </param> /// <returns> /// Sorted description of statue param /// </returns> public string SortAndRetrieveProductDescription(IStatue statue) { SortStatueDescription(statue.GetDescription()); return(FormatProductDescription()); }
/// <summary> /// Gets the description of the statue /// </summary> /// <returns></returns> public virtual string GetDescription() { return(_originalStatue.GetDescription()); }