Exemplo n.º 1
0
 protected DecoratorBase(ComponentBase component)
 {
     _component = component;
 }
Exemplo n.º 2
0
 public ConcreteDecorator(ComponentBase component) : base(component)
 {
 }
Exemplo n.º 3
0
 public ConcreteDecorator(ComponentBase component)
     : base(component)
 {
 }
Exemplo n.º 4
0
 protected DecoratorBase(ComponentBase component)
 {
     _component = component;
 }