Exemplo n.º 1
0
        public Coffee PrepareCoffee(CoffeeSelection selection)
        {
            var coffee = coffeeMachine.BrewFilterCoffee();

            Console.WriteLine($"Coffee is ready! \n {coffee.CoffeeBeansUsed.Description}");
            return(coffee);
        }