示例#1
0
        static void Main(string[] args)
        {
            var a = new Coffee();
            var b = new Tea();

            a.prepareRecipe();
            b.prepareRecipe();

            Console.ReadKey();
        }
示例#2
0
 public CoffeeWithSugar(Coffee coffee, int sugarQuantity)
     : base(coffee)
 {
     this.sugarQuantity = sugarQuantity;
 }