private void btnIngresar_Click(object sender, EventArgs e)
        {
            if (validado())
            {
                ClaseDueño dueño = new ClaseDueño(txtRut.Text, txtNombre.Text, txtApellidoPaterno.Text,
                    txtApellidoMaterno.Text, txtCelular.Text, txtEmail.Text, Convert.ToInt32(txtIdComuna.Text),
                    txtCalleNumero.Text);
                MessageBox.Show("" + dueño.Ingresar(dueño) );

            }
            else
            {
                MessageBox.Show("Registro no ingresado. Datos no validados");
            }
        }