(String sessionId, String gameId)
| 20 | } |
| 21 | |
| 22 | public Game getGame(String sessionId, String gameId) throws SessionNotFoundException, GameNotFoundException { |
| 23 | return model.loadGame(gameId); |
| 24 | } |
| 25 | |
| 26 | public List<Game> getGames(String sessionId) throws SessionNotFoundException { |
| 27 | return model.loadGames(sessionId); |