diff --git a/src/main/java/cz/muni/fi/pa165/icehockeymanager/services/GameService.java b/src/main/java/cz/muni/fi/pa165/icehockeymanager/services/GameService.java
index 0ef81d245b501639b639122f176ffd818230af1c..84736ac4bf684dc338e1a722fe721f3d789a827d 100644
--- a/src/main/java/cz/muni/fi/pa165/icehockeymanager/services/GameService.java
+++ b/src/main/java/cz/muni/fi/pa165/icehockeymanager/services/GameService.java
@@ -18,13 +18,38 @@ public interface GameService {
      */
     Collection<Game> getAllGames();
 
+    /**
+     * Create a new entity game in DB.
+     * @param game the game to be created.
+     */
     void createGame(Game game);
 
+    /**
+     * Finds the game by given id.
+     * @param gameId ID of the game to be found.
+     * @return return Optional of the game to be found.
+     */
     Optional<Game> findGame(long gameId);
 
+    /**
+     * Removes a game entity from DB.
+     * @param game the entity to be removed
+     */
     void deleteGame(Game game);
 
+    /**
+     * Updates the score of a game and the winner if a winner is
+     * determined by the new score.
+     * @param game the entity to be updated.
+     * @param homeTeamScore new score of the home team.
+     * @param awayTeamScore new score of the away team.
+     */
     void updateGameScore(Game game, int homeTeamScore, int awayTeamScore);
 
+    /**
+     * Sets the winner of a game.
+     * @param game the entity to be updated.
+     * @param team the new winner of the game.
+     */
     void setGameWinner(Game game, Team team);
 }