예제 #1
0
 public ConDecorator(AbsSubject obj) : base(obj)
 {
 }
예제 #2
0
 public AbsDecorator(AbsSubject obj)
 {
     this.obj = obj;
 }