BolfTracker.Web.Controllers.GameController.Delete C# (CSharp) Method

Delete() public method

public Delete ( int gameId ) : System.Web.Mvc.ActionResult
gameId int
return System.Web.Mvc.ActionResult
        public ActionResult Delete(int gameId)
        {
            _gameService.DeleteGame(gameId);

            return RedirectToAction("Index", new { year = DateTime.Today.Year, month = DateTime.Today.Month });
        }