Esempio n. 1
0
        public BaseSection GetHeaderSection()
        {
            if (headerSection == null)
            {
                headerSection = new BaseSection();
                headerSection.excel = excel;
            }

            return headerSection;
        }
Esempio n. 2
0
        public BaseSection GetFooterSection()
        {
            if (footerSection == null)
            {
                footerSection = new BaseSection();
                footerSection.excel = excel;
            }

            return footerSection;
        }
Esempio n. 3
0
        public BaseSection GetDetailSection()
        {
            if (detailSection == null)
            {
                detailSection = new BaseSection();
                detailSection.excel = excel;
            }

            return detailSection;
        }
Esempio n. 4
0
 public void SetHeaderSection(BaseSection section)
 {
     headerSection = section;
 }
Esempio n. 5
0
 public void SetFooterSection(BaseSection section)
 {
     footerSection = section;
 }
Esempio n. 6
0
 public void SetDetailSection(BaseSection section)
 {
     detailSection = section;
 }