예제 #1
0
 public PremiumDecorator(IDecoratedCar decoCar) : base(decoCar)
 {
     decoratedCar.OptionsLevel = EOptionsLevel.Premium;
     SetOptionsLevel();
 }
예제 #2
0
 public LuxuryDecorator(IDecoratedCar decoCar) : base(decoCar)
 {
     decoratedCar.OptionsLevel = EOptionsLevel.Luxury;
     SetOptionsLevel();
 }