Ejemplo n.º 1
0
 public ConcreteDecoratorB(Component c)
     : base(c)
 {
 }
Ejemplo n.º 2
0
 public Decorator(Component c)
 {
     this.component = c;
 }