BolfTracker.Web.Controllers.ShotController.DeleteToShot C# (CSharp) Method

DeleteToShot() private method

private DeleteToShot ( int gameId, int shotId ) : System.Web.Mvc.ActionResult
gameId int
shotId int
return System.Web.Mvc.ActionResult
        public ActionResult DeleteToShot(int gameId, int shotId)
        {
            _shotService.DeleteToShot(gameId, shotId);

            return RedirectToAction("Details", "Game", new { id = gameId });
        }