public CombinationDecoratorAnswer(AbstractStudent student) : base(student)
 {
 }
Exemple #2
0
 public CombinationBase(AbstractStudent student)
 {
     this.abstractStudent = student;
 }
 public CombinationDecoratorCode(AbstractStudent student) : base(student)
 {
 }