// GET: Table
        public ActionResult Display()
        {
            var tableList = DBDataAccess.GetStandings();

            return(View("LeagueTable", tableList));
        }