private void cargarDetallePrestamo()
 {
     txtPrestamo.Text = prestamo.Pre_Numero.ToString();
     txtDNI.Text      = prestamo.Cli_Dni;
     txtDestino.Text  = GestionDestino.Get_Destino(prestamo.Des_Codigo);
     txtPeriodo.Text  = GestionPrestamo.GetPeriodo(prestamo.Per_Codigo).Rows[0][1].ToString();
     txtImporte.Text  = prestamo.Pre_Importe.ToString();
     txtInteres.Text  = prestamo.Pre_TasaInteres.ToString();
     txtCuotas.Text   = prestamo.Pre_CantidadCuotas.ToString();
     txtEstado.Text   = prestamo.Pre_Estado;
     dtpFecha.Text    = prestamo.Pre_Fecha.ToShortDateString();
 }