Exemplo n.º 1
0
        public string PutTogether(IBeverage beverage)
        {
            var result = beverage.GetBeverage();

            return($"Cup for Latte with the {result}");
        }
Exemplo n.º 2
0
        public string PutTogether(IBeverage beverage)
        {
            var result = beverage.GetBeverage();

            return($"Cup for Hot Chocolate with the ({result})");
        }
Exemplo n.º 3
0
        public string PutTogether(IBeverage beverage)
        {
            var result = beverage.GetBeverage();

            return($"Cup for espresso. with the ({result})");
        }