예제 #1
0
        static void Main(string[] args)
        {
            BeverageWithCoffeine coffe = new Coffe();
            BeverageWithCoffeine tea   = new Tea();

            coffe.BrewingRecipe();
            Console.WriteLine();
            tea.BrewingRecipe();
            Console.ReadKey();
        }