public DataGroupRCPlayers(FootballMatch match, FootballTeam team, Player player, RedCard redCard)
 {
     this.match = match;
     this.team = team;
     this.player = player;
     this.redCard = redCard;
 }
 public DataGroupGoalsPlayers(FootballMatch match, FootballTeam team, Player player, Goal goal)
 {
     this.match = match;
     this.team = team;
     this.player = player;
     this._goals = goal;
 }
        public DataGroupMatchPlayers(FootballMatch match, FootballTeam team, Player player)
        {
            this.match = match;
            this.team = team;
            this.player = player;
            this.matchPlayer = new MatchPlayer(-1, -1, -1, -1);
            this.showProperties = false;

        }
 public DataGroupYCPlayers(FootballMatch match, FootballTeam team, Player player, YellowCard yellowCard)
 {
     this.match = match;
     this.team = team;
     this.player = player;
     this.yellowCard = yellowCard;
 }