Beispiel #1
0
 // Constructor(s)
 public Vereniging(string naam)
 {
     this.naam = naam;
     this.locatie = new Locatie();
     this.teams = new List<Team>();
     this.spelers = new List<Speler>();
 }
Beispiel #2
0
 public Vereniging(string naam, Locatie locatie)
 {
     this.naam = naam;
     this.locatie = locatie;
 }