public DecoratorStudentAnswer(AbstractStudent abstractStudent) : base(abstractStudent) { }
public DecoratorStudentPreview(AbstractStudent abstractStudent) : base(abstractStudent) { }
public DecoratorStudent(AbstractStudent abstractStudent) { this._abstractStudent = abstractStudent; Name = abstractStudent.Name; }
public DecoratorStudentHomework(AbstractStudent abstractStudent) : base(abstractStudent) { }
public DecoratorStudentVideo(AbstractStudent abstractStudent) : base(abstractStudent) { }