public void setOfferteList(Offerta of, int stato) { foreach (Offerta offerta in offerte) { if (offerta.Veicolo.Id == of.Veicolo.Id) { offerta.Stato = stato; } } saveList(); }
private void button1_Click(object sender, EventArgs e) { if (check()) { veicolo.Colore = comboBox4.SelectedItem.ToString(); veicolo.Id = textBox5.Text; Offerta offerta = new Offerta(2, id, "Nuovo", veicolo); conc.aggiungiOfferta(offerta); MessageBox.Show("Richiesta mandata..."); this.Close(); } else { MessageBox.Show("Compilare tutti i campi..."); } }
private void button1_Click(object sender, EventArgs e) { if (opzione == 0) { SceltaComponenti sc = new SceltaComponenti(veicolo, id); sc.Show(); this.Close(); } else { Offerta offerta = new Offerta(2, id, getTipo(), veicolo); conc.aggiungiOfferta(offerta); MessageBox.Show("Richiesta mandata..."); this.Close(); } }
public void aggiungiOfferta(Offerta offerta) { OfferteListLoad(); offerte.Add(offerta); saveList(); }
public void editOffer(Offerta offerta, int stato) { offerta.Stato = stato; }