Ejemplo n.º 1
0
 public DecoratorBase(IDecoratorBase decorator)
 {
     this.decorator = decorator;
 }
Ejemplo n.º 2
0
 public ConcreteDecrator(IDecoratorBase decorator) : base(decorator)
 {
 }