Beispiel #1
0
 public RepoweringBonusDecorator(EnergyPlantAbstract energyPlant) : base(energyPlant)
 {
     FeeDescription = "Repowering Bonus";
 }
 public RemoteControlBonusDecorator(EnergyPlantAbstract energyPlant) : base(energyPlant)
 {
     FeeDescription = "Remote Control Bonus";
 }
 public EnergyPlantDecorator(EnergyPlantAbstract energyPlant)
 {
     _energyPlant = energyPlant;
 }
 public DirectMarketeerBonusDecorator(EnergyPlantAbstract energyPlant) : base(energyPlant)
 {
     FeeDescription = "Direct Marketeer Bonus";
 }