Esempio n. 1
0
 public ReportFooter(ReportComponent comp, string title)
     : base(comp)
 {
     this.title = title;
 }
Esempio n. 2
0
 protected ReportDecorator(ReportComponent comp)
 {
     component = comp;
 }
Esempio n. 3
0
 private static void PrintReport(ReportComponent report)
 {
     report.Print();
 }