Beispiel #1
0
 public KeepWarmDecorator(House house) : base(house)
 {
 }
 public SecurityDecorator(House house) : base(house)
 {
 }
Beispiel #3
0
 protected DecoratorStrategy(House house)
 {
     this._house = house;
 }