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