public bool UpdateGame(Game game) { try { gameDataAccess.UpdateGame(game); } catch (Exception ex) { ExceptionDA.StoreExceptions(ex); return(false); } return(true); }