Esempio n. 1
0
 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);
 }
Esempio n. 2
0
 public ActionResult Match(GameViewModel model)
 {
     Business.Game.InitiateGame init = new Business.Game.InitiateGame();
     model = init.GetStartUpVals(model);
     return View(model);
 }