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