public PremiumDecorator(IDecoratedCar decoCar) : base(decoCar)
 {
     decoratedCar.OptionsLevel = EOptionsLevel.Premium;
     SetOptionsLevel();
 }
 public LuxuryDecorator(IDecoratedCar decoCar) : base(decoCar)
 {
     decoratedCar.OptionsLevel = EOptionsLevel.Luxury;
     SetOptionsLevel();
 }