Example #1
0
        public void OnMostrarMensaje(string parametro)
        {
            ParametroTextoEventHandler handler = this.MostrarMensajeEnUI;

            if (handler != null)
            {
                handler(this, parametro);
            }
        }
Example #2
0
        private void OnMostrarVentanaReporteEvent(string parametro)
        {
            ParametroTextoEventHandler handler = this.MostrarVentanaReporteEvent;

            if (handler != null)
            {
                handler(this, parametro);
            }
        }