public ElegirTipoAsiento(String categoriasSelecionadas, ComprarPrincipal cp) { cadenaTipo = categoriasSelecionadas; a = cp; InitializeComponent(); }
public ConfirmarCompra(ComprarPrincipal ventanaAVolver, List <String> IDCargados, int user) { aVolver = ventanaAVolver; InitializeComponent(); usuarioID = user; IDs = IDCargados; }
private void buttonElegirUbicacion_Click(object sender, EventArgs e) { ComprarPrincipal a = this; ElegirTipoAsiento es = new ElegirTipoAsiento(labelTipoUbicaciones.Text, a); es.Show(); }
public Elegir_categoria(String categoriasSelecionadas, ComprarPrincipal cp) { cadenaCategorias = categoriasSelecionadas; a = cp; // paginaActual = 1; InitializeComponent(); }
//ELEGIR CATEGORIAS private void buttonCategoria_Click(object sender, EventArgs e) { ComprarPrincipal a = this; Elegir_categoria el = new Elegir_categoria(labelCategoria.Text, a); el.Show(); }
//BOTON PARA CONFIRMAR LA COMPRA O SEA PAGAR private void button2_Click(object sender, EventArgs e) { if (Usuario.esAdmin == 1) { MessageBox.Show("Un administrador no puede comprar", "Error"); return; } ComprarPrincipal thi = this; if (!IDCargados.Any()) { MessageBox.Show("No has seleccionado nada para comprar"); return; } ConfirmarCompra a = new ConfirmarCompra(this, IDCargados, userID); a.Show(); this.Hide(); }