示例#1
0
        public virtual ReportDocument CreateReport()
        {
            CrystalReportReporte rpt = new CrystalReportReporte();

            rpt.Site = this.Site;
            return(rpt);
        }
            public virtual ReportDocument CreateReport()
            {
                CrystalReportReporte    report =
                        new CrystalReportReporte();

                report.InitReport += new EventHandler( this.webService.OnInitReport );

                return ( report );
            }
示例#3
0
            public virtual ReportDocument  CreateReport()
            {
                CrystalReportReporte report =
                    new CrystalReportReporte();

                report.InitReport += new EventHandler(this.webService.OnInitReport);

                return(report);
            }
示例#4
0
 public virtual ReportDocument CreateReport()
 {
     CrystalReportReporte rpt = new CrystalReportReporte();
     rpt.Site = this.Site;
     return rpt;
 }