Exemplo n.º 1
0
        private void FormHoteles_Load(object sender, EventArgs e)
        {
            //bindingSourceHoteles.DataSource = Bd.HotelesSelect();
            bindingSourceCiudades.DataSource = Bd.CiudadesSelect();

            ciudades c = Bd.CiudadesSelectPorId((int)comboBoxCiudades.SelectedValue);

            bindingSourceHoteles.DataSource = c.hoteles;
        }
Exemplo n.º 2
0
        private void comboBoxCiudades_SelectedIndexChanged(object sender, EventArgs e)
        {
            ciudades c = Bd.CiudadesSelectPorId((int)comboBoxCiudades.SelectedValue);

            bindingSourceHoteles.DataSource = c.hoteles;
        }