public ActionResult EditMatch(int id)
        {
            var teams = teamsService.GetTeamsViewModel();
            var model = matchesService.GetViewModelByID(id, teams);

            return(View("AddMatch", model));
        }