public ActionResult AddMatch()
        {
            var teams = teamsService.GetTeamsViewModel();
            var model = matchesService.CreateNewModel(teams);

            return(View(model));
        }