コード例 #1
0
ファイル: ReportMgr.cs プロジェクト: Novthirteen/yfkey-scms
        public void WriteToClient(String template, string entityId, String fileName)
        {
            IReportBaseMgr iReportMgr = this.GetImplService(template);

            iReportMgr.FillValues(template, entityId);
            this.WriteToClient(fileName, iReportMgr.GetWorkbook());
        }
コード例 #2
0
ファイル: ReportMgr.cs プロジェクト: Novthirteen/yfkey-scms
        public string WriteToFile(String template, string entityId)
        {
            IReportBaseMgr iReportMgr = this.GetImplService(template);

            iReportMgr.FillValues(template, entityId);
            return(this.WriteToFile(iReportMgr.GetWorkbook()));
        }
コード例 #3
0
ファイル: ReportMgr.cs プロジェクト: Novthirteen/yfkey-scms
        public void WriteToClient(String template, IList <object> list, String fileName)
        {
            IReportBaseMgr iReportMgr = GetIReportBaseMgr(template, list);

            this.WriteToClient(fileName, iReportMgr.GetWorkbook());
        }
コード例 #4
0
ファイル: ReportMgr.cs プロジェクト: Novthirteen/yfkey-scms
        public string WriteToFile(String template, IList <object> list, String fileName)
        {
            IReportBaseMgr iReportMgr = GetIReportBaseMgr(template, list);

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