예제 #1
0
 public Laptop(string description, Decorator decorator)
     : base(description, decorator)
 {
     
 }
예제 #2
0
 public Feature(string description, Decorator decorator)
     : base(description, decorator)
 {
     
 }
예제 #3
0
 protected Decorator(string description, Decorator decorator = null)
 {
     _decorator = decorator;
     Description = description;
 }