private void opslaanButton_Click(object sender, EventArgs e) { Persoon persoon = PersoonOpslaan(); List <Inschrijving> inschrijvingen = DataInschrijving.GeefInschrijving(persoon); Nullable <int> inschrijvingId = null; foreach (Inschrijving ins in inschrijvingen) { if (!DataInschrijvingConferentieDagLink.BestaatLink(ins, InvokeCOnferentieListBox())) { inschrijvingId = DataInschrijving.InschrijvingToevoegen(persoon.ID); break; } } if (inschrijvingId != null) { InschrijvingToevoegen((int)inschrijvingId); DataFactuur.FactuurToevoegen(_prijs, (int)inschrijvingId, factuurUserControl2.Factuurnummer, DateTime.Now, null); MessageBox.Show("Inschrijving en factuur toegevoegd. Er wordt nu een bericht verzonden met een bevesteging.", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information); //InschrijvingToegevoegd(); //ZendProgressBar.Visible = true; Thread thread = new Thread(ZendEMail); thread.IsBackground = true; thread.Start(); } else { MessageBox.Show("Deze inschrijving is al toegevoegd.", "Opgepast", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }
public void PlaatsFactuurnummer() { factuurNummerLabel.Text = DataFactuur.GeefLaatsteFactuurNummer(); }
public void AanvullenFactuurNummers() { facturenComboBox.Items.AddRange(DataFactuur.GeefFacturen().ToArray()); }