private void btnAgregarReserva_Click(object sender, EventArgs e)
        {
            Reserva reserva = new Reserva();

            reserva.FechaReserva = datePickerReserva.Text;
            reserva.FechaIngreso = datePickerIngreso.Text;
            reserva.FechaSalida  = datePickerSalida.Text;
            reserva.IdCliente    = Convert.ToInt32(cboboxCliente.SelectedValue);
            reserva.IdHabitacion = Convert.ToInt32(cboboxHabitacion.SelectedValue);
            reserva.IdFormaPago  = Convert.ToInt32(cboboxFormaPago.SelectedValue);
            int resultado = ReservaDAL.Agregar(reserva);

            if (resultado > 0)
            {
                MessageBox.Show("Reserva guardado Con Exito!!", "Guardado", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            else
            {
                MessageBox.Show("No se pudo guardar la reserva", "Fallo!!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
        }