public Doelpunt(Speler speler, Wedstrijd wedstrijd, VoetbalTeam team) { this.DoelpuntId = Guid.NewGuid(); this.Wedstrijd = wedstrijd; this.Team = team; this.Speler = speler; }
public static string GetWedstrijdWordtGespeeld(Wedstrijd wedstrijd) { return($"{wedstrijd.NaamToString} wordt nu gespeeld"); }