private void regimenComboBox_SelectedValueChanged(object sender, EventArgs e)
 {
     id_regimenSeleccionado = (int)regimenComboBox.SelectedValue;
     costoPorDia            = 0;
     costoTotal             = 0;
     foreach (Habitacion habitSeleccionada in habitacionesSeleccionadas)
     {
         costoPorDia = costoPorDia + hotelCtrl.getCostoPorDiaHabitacion(hotelReserva, id_regimenSeleccionado, habitSeleccionada.id_tipo_habitacion);
     }
     costoTotal           = costoPorDia * cantidadDiasReserva;
     precioPorDiaBox.Text = costoPorDia.ToString("#.##");
     totalBox.Text        = costoTotal.ToString("#.##");
 }
        private void regimenComboBox_SelectedValueChanged(object sender, EventArgs e)
        {
            id_regimen_seleccionado = (int)regimenComboBox.SelectedValue;
            decimal costoPorDia = 0;
            decimal costoTotal  = 0;

            foreach (Habitacion habitSeleccionada in reservaConCambio.habitacionesReserva)
            {
                costoPorDia = costoPorDia + hotelCtrl.getCostoPorDiaHabitacion(habitSeleccionada.id_hotel, id_regimen_seleccionado, habitSeleccionada.id_tipo_habitacion);
            }
            costoTotal           = costoPorDia * reservaConCambio.cantidad_noches;
            precioPorDiaBox.Text = costoPorDia.ToString("#.##");
            totalBox.Text        = costoTotal.ToString("#.##");
        }