Exemplo n.º 1
0
 public PremiumDecorator(IDecoratedCar decoCar) : base(decoCar)
 {
     decoratedCar.OptionsLevel = EOptionsLevel.Premium;
     SetOptionsLevel();
 }
Exemplo n.º 2
0
 public LuxuryDecorator(IDecoratedCar decoCar) : base(decoCar)
 {
     decoratedCar.OptionsLevel = EOptionsLevel.Luxury;
     SetOptionsLevel();
 }