public ConcreteDecoratorB(Component c)
     : base(c)
 {
 }
 public Decorator(Component c)
 {
     this.component = c;
 }