Example #1
0
 protected virtual void Cambio_Persona(CambioPersonaEventArgs e)
 {
     if (CambioPersona != null)
     {
         CambioPersona(this, e);
     }
 }
Example #2
0
 protected void agp_persona_CambioPersona(object sender, CambioPersonaEventArgs e)
 {
     if (e.Persona != null)
     {
         this.Busca_Correos(Convert.ToInt32(e.Persona.Rut));
         this.Busca_Direcciones(Convert.ToInt32(e.Persona.Rut));
         this.Busca_Telefonos(Convert.ToInt32(e.Persona.Rut));
     }
 }