Ejemplo n.º 1
0
        public ActionResult AddMatch(AddMatchModel model)
        {
            DatabaseManager.AddMatch(model.HomeTeamSelectedId, model.AwayTeamSelectedId, model.TournamentSelectedId, model.Date, model.Type);

            return(Redirect("/admin/addmatch"));
        }