示例#1
0
        public ActionResult DeleteEv(int matchId)
        {
            bool result = matchProvider.DeleteEvent(matchId);

            if (!result)
            {
                log.Error("Controller: Match, Action: DeleteMatch Don't delete Match");
            }
            return(RedirectToAction("ShowMatches"));
        }