public ActionResult CreateMatchups(int?id)
        {
            League      league       = _db.Leagues.Find(id);
            LeagueLogic createLeague = new LeagueLogic();

            //TODO - Selection on the league page to add teams - tick box or something

            createLeague.CreateLeague(league);

            return(RedirectToAction("Index"));
        }