private void CU_Cotizacion_Load(object sender, EventArgs e)
 {
     try
     {
         logicaConsulta.obtenerIdCotizacion(Txt_correlativo);
         logicaConsulta.cargarClientes(Cbo_clientes, listaClientes);
         logicaConsulta.cargarProductos(Cbo_productos, listaProductos);
         Cbo_clientes.SelectedIndex  = 0;
         Cbo_productos.SelectedIndex = 0;
         Txt_subtotal.Text           = Txt_precioProducto.Text;
     }
     catch
     {
         MessageBox.Show("Error Desconocido!", "Facturacion", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }