protected DecoratorBase(ComponentBase component)
 {
     _component = component;
 }
Exemple #2
0
 public ConcreteDecorator(ComponentBase component) : base(component)
 {
 }
 public ConcreteDecorator(ComponentBase component)
     : base(component)
 {
 }
Exemple #4
0
 protected DecoratorBase(ComponentBase component)
 {
     _component = component;
 }