private void BtBuscarCont_Click(object sender, RoutedEventArgs e)
        {
            Contratos con = new Contratos()
            {
                rut_rep = txbRutRepBusca.Text
            };

            if (con.Read())
            {
                TxbInstContra.Text           = con.institucion;
                TxbCursoContra.Text          = con.curso;
                TxbCantContra.Text           = con.cantidad.ToString();
                TxbNombRContra.Text          = con.nombre_rep;
                TxbCRutRContra.Text          = con.rut_rep;
                TxbCorreoRContra.Text        = con.correo_rep;
                CbSeguroContra.SelectedItem  = con.seguro;
                CbDestinoContra.SelectedItem = con.destino;
                TxbCostoContra.Text          = con.costo.ToString();


                MessageBox.Show("Contrato leído", "Información", MessageBoxButton.OK, MessageBoxImage.Information);
            }
            else
            {
                MessageBox.Show("Ccontrato no pudo ser leído", "Atención", MessageBoxButton.OK, MessageBoxImage.Exclamation);
            }
        }