Beispiel #1
0
 public Klant(string Naam, string Adres)
 {
     KlantRepo = new KlantRepository(new KlantContext());
     KlantRepo.AddKlant(Naam, Adres);
     this.Naam        = Naam;
     this.Adres       = Adres;
     this.Klantnummer = KlantRepo.GeefKlantNummer(this);
 }