public Klant() { InitializeComponent(); db = new DatabaseDataContext(); pc = new KlantController(db); dgKlant.ItemsSource = pc.geefAlleKlanten(); }
private void btnAdd_Copy_Click(object sender, RoutedEventArgs e) { string sVoornaam = txtVoornaam.Text; string sAchternaam = txtAchternaam.Text; string sLeeftijd = txtLeeftijd.Text; string sWoonplaats = txtWoonplaats.Text; string sAdres = txtAdres.Text; string iBsn = txtBsn.Text; string dGeboortedatum = dpGeboortedatum.SelectedDate.Value.ToString(); string sEmail = txtEmail.Text; string sTelefoon = txtTelefoon.Text; pc.opslaanCustomer(sVoornaam, sAchternaam, sLeeftijd, sWoonplaats, sAdres, iBsn, dGeboortedatum, sEmail, sTelefoon); dgKlant.ItemsSource = pc.geefAlleKlanten(); empty_attributes(); }