Exemplo n.º 1
0
        public void generarReporte()
        {
            ConstructorInformeEnPantallaTI constructorInformePantalla = new ConstructorInformeEnPantallaTI();
            DirectorConstruccionInformeTiemposInterveciones directorConstruccionInforme = new DirectorConstruccionInformeTiemposInterveciones(constructorInformePantalla);

            directorConstruccionInforme.construir(this.promedioDuracion, this.datosIntervenciones, this.fechaHoraDesdePeriodo, this.fechaHoraHastaPeriodo, this.seleccionTipoSiniestro, this.seleccionGravedad, this.seleccionTiempoAnalizar);
            FrmSalidaReporte pantallaReporte = constructorInformePantalla.obtenerProducto();

            pantallaReporte.ShowDialog();
        }
        public FrmSalidaReporte construirProducto()
        {
            this.reporte = new FrmSalidaReporte();

            return(reporte);
        }