Ejemplo n.º 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            if ((comboAño.SelectedIndex == -1) || (comboTrimestre.SelectedIndex == -1))
            {
                MessageBox.Show("Debe ingresar el año y el trimestre");
            }

            else
            {
                ListadoDelTOP5 nuevoForm = new ListadoDelTOP5();
                nuevoForm.Show();
                nuevoForm.mostrarTOP5(obtenerTOP5(Convert.ToInt32(comboAño.SelectedItem.ToString()), Convert.ToInt32(comboTrimestre.SelectedItem.ToString()), top5HotReserCanc.Text), "Top 5 de los Hoteles con mayor cantidad de reservas canceladas");
            }
        }
Ejemplo n.º 2
0
        private void top5HabMasOcup_Click(object sender, EventArgs e)
        {
            if ((comboAño.SelectedIndex == -1) || (comboTrimestre.SelectedIndex == -1))
            {
                MessageBox.Show("Debe ingresar el año y el trimestre");
            }

            else
            {
                ListadoDelTOP5 nuevoForm = new ListadoDelTOP5();
                nuevoForm.Show();

                nuevoForm.mostrarTOP5(obtenerTOP5(Convert.ToInt32(comboAño.SelectedItem.ToString()), Convert.ToInt32(comboTrimestre.SelectedItem.ToString()), top5HabMasOcup.Text), "Top 5 de las Habitaciones más ocupadas");
            }
        }
Ejemplo n.º 3
0
        private void top5CliMejPunt_Click(object sender, EventArgs e)
        {
            if ((comboAño.SelectedIndex == -1) || (comboTrimestre.SelectedIndex == -1))
            {
                MessageBox.Show("Debe ingresar el año y el trimestre");
            }

            else
            {
                ListadoDelTOP5 nuevoForm = new ListadoDelTOP5();
                nuevoForm.Show();

                nuevoForm.mostrarTOP5(obtenerTOP5(Convert.ToInt32(comboAño.SelectedItem.ToString()), Convert.ToInt32(comboTrimestre.SelectedItem.ToString()), top5CliMejPunt.Text), "Top 5 de los Clientes mejores puntuados");
            }
        }