コード例 #1
0
 public SchoolReportDecorator(SchoolReport report)
 {
     _report = report;
 }
コード例 #2
0
ファイル: Decorator.cs プロジェクト: bbigcd/codestore
 //构造函数,传递成绩单过来
 public Decorator(SchoolReport sr)
 {
     this.sr = sr;
 }