static void Main(string[] args) { Beverage bebida = new PayuEspresso(1); Console.WriteLine(bebida.getDescription() + " $" + bebida.getCost()); bebida = new SoyMilk(bebida); Console.WriteLine(bebida.getDescription() + " $" + bebida.getCost()); bebida = new Sugar(bebida); Console.WriteLine(bebida.getDescription() + " $" + bebida.getCost()); bebida = new EspressoShot(bebida); Console.WriteLine(bebida.getDescription() + " $" + bebida.getCost()); Console.ReadKey(); }