Esempio n. 1
0
 public RedShapeDecorator(IDecoratorShape shape) : base(shape)
 {
 }
Esempio n. 2
0
 private void SetRedBorder(IDecoratorShape shape)
 {
     Console.WriteLine("Red border color");
 }
Esempio n. 3
0
 public ShapeDecorator(IDecoratorShape shape)
 {
     this.shape = shape;
 }