コード例 #1
0
ファイル: Vereniging.cs プロジェクト: mrhaver/TurfProject
 // Constructor(s)
 public Vereniging(string naam)
 {
     this.naam = naam;
     this.locatie = new Locatie();
     this.teams = new List<Team>();
     this.spelers = new List<Speler>();
 }
コード例 #2
0
ファイル: Vereniging.cs プロジェクト: mrhaver/TurfProject
 public Vereniging(string naam, Locatie locatie)
 {
     this.naam = naam;
     this.locatie = locatie;
 }