The main service for the business logic of the Game
 public ActionResult Play(GameState gameState, string move)
 {
     var service = new FarkleService();
     //gameState = service.Play(gameState, move);
     //return View(gameState);
     return null;
 }
 public ActionResult NewGame(GameSetup setup)
 {
     var service = new FarkleService();
     var gameState = service.StartNewGame(setup);
     //return View("Play", gameState);
     return null;
 }