Exemple #1
0
        public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
        {
            InterpretesReporte rpt = new InterpretesReporte();

            rpt.Site = this.Site;
            return(rpt);
        }
Exemple #2
0
        public InterpretesReporte GetInterpretesReporte(List <Interprete> lista)
        {
            InterpretesReporte        rpt            = new InterpretesReporte();
            ManejadorDatosInterpretes manejadorDatos = new ManejadorDatosInterpretes();
            var ds = manejadorDatos.PonerDatosDeInterpretes(lista);

            rpt.SetDataSource(ds);
            return(rpt);
        }