コード例 #1
0
 private void generarReporteAdm(int id)
 {
     try
     {
         ReporteController reporteController = new ReporteController();
         if (reporteController.generarReporte(id))
         {
             crystalReportViewer1.ReportSource = reporteController.reporte;
         }
     }
     catch (ControllerException ex)
     {
         PropiedadesGenerales.Notificar.notificarError(ex);
     }
 }