public void AddSectionToTop(ReportSection section)
 {
     this.Sections.Insert(0, section);
 }
 public void AddSection(ReportSection section)
 {
     this.Sections.Add(section);
 }