Esempio n. 1
0
 private void ObtenerDatosContacto()
 {
     try
     {
         c.ObtenerDatosContacto();
         txtNombre.Text     = c.Nombre;
         txtApellidos.Text  = c.Apellidos;
         txtLada01.Text     = c.Lada01;
         txtTelefono01.Text = c.Telefono01;
         txtLada02.Text     = c.Lada02;
         txtTelefono02.Text = c.Telefono02;
         txtExt.Text        = c.Extension;
         txtCelular.Text    = c.Celular;
         txtCorreo.Text     = c.Correo;
     }
     catch (MySql.Data.MySqlClient.MySqlException ex)
     {
         throw ex;
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }