Ejemplo n.º 1
0
        public ActionResult Save(Game game)
        {
            System.Diagnostics.Debug.WriteLine("Got to here, issue in service.SaveGame");
            GameSecurityDAO service = new GameSecurityDAO();
            bool            result  = service.SaveGame(game);

            if (!result)
            {
                return(NotFound(game));
            }
            return(Ok("Successfully paused the game: " + game.Id));
        }
Ejemplo n.º 2
0
        public ActionResult <Game> Index(string id)
        {
            GameSecurityDAO service = new GameSecurityDAO();
            int             searchId;

            if (Int32.TryParse(id, out searchId))
            {
                Game result = service.FindById(searchId);
                if (result == null || result.Id != searchId)
                {
                    return(NotFound(id));
                }
                return(result);
            }
            return(NotFound(id));
        }