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