ArmedCards.Web.Controllers.Game.CreateGameController.Index C# (CSharp) Method

Index() private method

private Index ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            Entities.Models.Game.CreateGame model = new Entities.Models.Game.CreateGame();

            model.AvailableDecks = _selectDeck.Execute(new Entities.Filters.Deck.Select { });

            model.AvailableDecks.RemoveAll(x => x.DeckID == 1);

            return View("~/Views/CreateGame/CreateGame.cshtml", model);
        }

Same methods

CreateGameController::Index ( Entities model ) : System.Web.Mvc.ActionResult
CreateGameController