BolfTracker.Web.Controllers.ShotController.DeleteToShot C# (CSharp) Méthode

DeleteToShot() private méthode

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

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