public StudentHomeworkDecorator(AbstractStudent student) : base(student) { }
public BaseStudentDecorator(AbstractStudent student) { _student = student; }
public StudentCombination(AbstractStudent student) { _student = student; }
public StudentCommentDecorator(AbstractStudent student) : base(student) { }