コード例 #1
0
 public CoffeeDecorator(Coffee coffee)
 {
     this.coffee = coffee;
 }
コード例 #2
0
 public MilkDecorator(Coffee coffee) : base(coffee)
 {
 }