Exemplo n.º 1
0
 public Decorator(ISchoolReport sr)
 {
     _sr = sr;
 }
Exemplo n.º 2
0
 public BeforeDecorator(ISchoolReport sr) : base(sr)
 {
 }
Exemplo n.º 3
0
 public AfterDecorator(ISchoolReport sr) : base(sr)
 {
 }
Exemplo n.º 4
0
 public SortDecorator(ISchoolReport schoolReport) : base(schoolReport)
 {
 }
Exemplo n.º 5
0
 public HighScoreDecorator(ISchoolReport schoolReport) : base(schoolReport)
 {
 }
Exemplo n.º 6
0
 protected AbstractDecorator(ISchoolReport schoolReport)
 {
     this._schoolReport = schoolReport;
 }
 public RangeDecorator(ISchoolReport report) : base(report)
 {
 }
Exemplo n.º 8
0
 protected Decorator(ISchoolReport report)
 {
     _report = report;
 }