private void executeNuevo()
        {
            FormCotizacionNuevo formCotizacionNuevo = new FormCotizacionNuevo();

            formCotizacionNuevo.ShowDialog();
            cargarRegistros();
        }
        private void executeModificar()
        {
            // Verificando la existencia de datos en el datagridview
            if (dataGridView.Rows.Count == 0)
            {
                MessageBox.Show("No hay un registro seleccionado", "Eliminar", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                return;
            }

            int index        = dataGridView.CurrentRow.Index;                            // Identificando la fila actual del datagridview
            int idCotizacion = Convert.ToInt32(dataGridView.Rows[index].Cells[0].Value); // obteniedo el idCategoria del datagridview

            currentCotizacion = cotizaciones.Find(x => x.idCotizacion == idCotizacion);  // Buscando la categoria en las lista de categorias

            // Mostrando el formulario de modificacion
            FormCotizacionNuevo formCotizacionNuevo = new FormCotizacionNuevo(currentCotizacion);

            formCotizacionNuevo.ShowDialog();
            cargarRegistros(); // recargando loas registros en el datagridview
        }