Esempio n. 1
0
        public void WriteToClient(String template, string entityId, String fileName)
        {
            IReportBaseMgr iReportMgr = this.GetImplService(template);

            iReportMgr.FillValues(template, entityId);
            this.WriteToClient(fileName, iReportMgr.GetWorkbook());
        }
Esempio n. 2
0
        public string WriteToFile(String template, string entityId)
        {
            IReportBaseMgr iReportMgr = this.GetImplService(template);

            iReportMgr.FillValues(template, entityId);
            return(this.WriteToFile(iReportMgr.GetWorkbook()));
        }
Esempio n. 3
0
        public IReportBaseMgr GetIReportBaseMgr(String template, IList <object> list)
        {
            IReportBaseMgr iReportMgr = this.GetImplService(template);

            if (iReportMgr != null)
            {
                iReportMgr.FillValues(template, list);
            }

            return(iReportMgr);
        }
Esempio n. 4
0
        public void WriteToClient(String template, IList <object> list, String fileName)
        {
            IReportBaseMgr iReportMgr = GetIReportBaseMgr(template, list);

            this.WriteToClient(fileName, iReportMgr.GetWorkbook());
        }
Esempio n. 5
0
        public string WriteToFile(String template, IList <object> list, String fileName)
        {
            IReportBaseMgr iReportMgr = GetIReportBaseMgr(template, list);

            return(this.WriteToFile(fileName, iReportMgr.GetWorkbook()));
        }