implement all TODOs exept bonus

This commit is contained in:
2026-05-01 23:08:13 +04:30
parent 6a01e43eb2
commit d25e0a1779
4 changed files with 113 additions and 14 deletions
+3 -1
View File
@@ -22,7 +22,9 @@ public class Main {
case 2:
// TODO: Get genre ID and page from user, then call movieService.displayMoviesByGenre()
long generId = getLongInput("Enter the ID: ");
long page = getLongInput("Enter the page: ");
movieService.displayMoviesByGenre(generId, page);
break;