public ConDecorator(AbsSubject obj) : base(obj) { }
public AbsDecorator(AbsSubject obj) { this.obj = obj; }