public ActionResult List()
        {
            List <ActivePlayer> activePlayerList = db.ActivePlayers.ToList();
            List <Player>       players          = new List <Player>();

            foreach (var p in activePlayerList)
            {
                players.Add(PlayerHelper.ActivePlayertoPlayer(p, db));
            }
            return(View(players));
        }