public ActionResult Index() { GameViewModel model = new GameViewModel(); Business.Game.InitiateGame init = new Business.Game.InitiateGame(); model = init.GetStartUpVals(model); model.NumberOfRoundsList = init.GetNumOfRounds(); return View(model); }
public ActionResult Match(GameViewModel model) { Business.Game.InitiateGame init = new Business.Game.InitiateGame(); model = init.GetStartUpVals(model); return View(model); }