public SchoolReportDecorator(SchoolReport report)
 {
     _report = report;
 }
Exemplo n.º 2
0
 //构造函数,传递成绩单过来
 public Decorator(SchoolReport sr)
 {
     this.sr = sr;
 }