private void AltaHabitacionForm_Load(object sender, EventArgs e)
 {
     cmbHotel.DataSource    = HotelServicio.TraerHoteles();
     cmbHotel.SelectedIndex = hotelSeleccionado;
     CargarPlazas();
     CargarCategorias();
 }
예제 #2
0
 private void button1_Click(object sender, EventArgs e)
 {
     dataHotel.DataSource = HotelServicio.TraerHoteles();
     dataHotel.Show();
 }
 private void ListarHoteles()
 {
     cmbHotel.DataSource = HotelServicio.TraerHoteles();
 }
예제 #4
0
 private void LlenarCmbHotel()
 {
     cmbHotel.DataSource    = HotelServicio.TraerHoteles();
     cmbHotel.SelectedIndex = -1;
 }
예제 #5
0
 private void LlenarComboHoteles()
 {
     cmbHotel.DataSource     = HotelServicio.TraerHoteles();
     cmbHotel.SelectedIndex  = -1;
     dataClientes.DataSource = null;
 }