Exemple #1
0
        public string PutTogether(IBeverage beverage)
        {
            var result = beverage.GetBeverage();

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

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

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