using Decorator.Components; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Decorator { internal class Client { public void ClientCode(Component component) { Console.WriteLine($"RESULT: {component.Operation()}"); } } }