public ReportSection AddSection(ReportSection section)
 {
     if (this.Sections == null)
     {
         this.Sections = new List <ReportSection>();
     }
     this.Sections.Add(section);
     return(section);
 }
        public ReportSection AddSection()
        {
            var newSection = new ReportSection();

            return(this.AddSection(newSection));
        }