コード例 #1
0
 public DecoratorStudentAnswer(AbstractStudent abstractStudent) : base(abstractStudent)
 {
 }
コード例 #2
0
 public DecoratorStudentPreview(AbstractStudent abstractStudent) : base(abstractStudent)
 {
 }
コード例 #3
0
 public DecoratorStudent(AbstractStudent abstractStudent)
 {
     this._abstractStudent = abstractStudent;
     Name = abstractStudent.Name;
 }
コード例 #4
0
 public DecoratorStudentHomework(AbstractStudent abstractStudent) : base(abstractStudent)
 {
 }
コード例 #5
0
 public DecoratorStudentVideo(AbstractStudent abstractStudent) : base(abstractStudent)
 {
 }