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