Ejemplo n.º 1
0
        void bindingControl1_GetBiblio(object sender, GetBiblioEventArgs e)
        {
            var func = this.GetBiblio;

            if (func != null)
            {
                func(sender, e);
            }
        }
Ejemplo n.º 2
0
 void bindingControl1_GetBiblio(object sender, GetBiblioEventArgs e)
 {
     this.GetBiblio?.Invoke(sender, e);
 }