develop #1

Open
Fateme_Azizi wants to merge 7 commits from develop into main
Showing only changes of commit 34c42b10ab - Show all commits
+5 -5
View File
@@ -21,15 +21,15 @@ 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 page = getLongInput("Enter page: ");
movieService.displayMoviesByGenre(genreId, page);
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: