WIP: develop #1

Draft
HadiSharifi wants to merge 7 commits from develop into main
Showing only changes of commit 1a6f0a7c41 - Show all commits
+5 -3
View File
@@ -21,15 +21,17 @@ public class Main {
break;
case 2:
// TODO: Get genre ID and page from user, then call movieService.displayMoviesByGenre()
Long genreId = getLongInput("Enter genre id: ");
Long pages = getLongInput("Enter page number: ");
movieService.displayMoviesByGenre(genreId, pages);
break;
case 3:
// TODO (BONUS): Get movie ID from user, then call movieService.displayMovieDetails()
Long movieId = getLongInput("Enter movie id: ");
movieService.displayMovieDetails(movieId);
break;
case 0: