public static AltaHabitacion obtenerInstancia() { if (instancia == null) { instancia = new AltaHabitacion(); } return(instancia); }
private void alta_Click(object sender, EventArgs e) { dtHab.Clear(); this.Hide(); AltaHabitacion f1 = new AltaHabitacion(idH); f1.ShowDialog(); this.Show(); }
private void button2_Click(object sender, EventArgs e) { AltaHabitacion alta = new AltaHabitacion(); this.Hide(); alta.ShowDialog(); this.Show(); if (alta.Result == DialogResult.OK) { RefreshData(); } }
private void buttonNuevoRegimen_Click(object sender, EventArgs e) { AltaHabitacion alta = new AltaHabitacion(); alta.Show(); }
private void button1_Click(object sender, EventArgs e) { this.Hide(); AltaHabitacion.obtenerInstancia().Show(); }