public KeepWarmDecorator(House house) : base(house) { }
public SecurityDecorator(House house) : base(house) { }
protected DecoratorStrategy(House house) { this._house = house; }