public MatchupEntries(Matchups matchup, Teams team, double score)
 {
     this.Matchup = matchup;
     this.Team    = team;
     this.Score   = score;
 }
 public TournamentEntry(Tournaments tournament, Teams team)
 {
     this.tournament = tournament;
     this.team       = team;
 }