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; }
private void buttonInsert_Click(object sender, EventArgs e) { string mensaje = Bd.CiudadInsert(int.Parse(textBoxIdentificador.Text), textBoxNombre.Text); if (mensaje != "") { MessageBox.Show(mensaje); } else { MessageBox.Show("Alta correcta"); } }
private void comboBoxCiudades_SelectedIndexChanged(object sender, EventArgs e) { ciudades c = Bd.CiudadesSelectPorId((int)comboBoxCiudades.SelectedValue); bindingSourceHoteles.DataSource = c.hoteles; }