merge branch develop to main #1

Merged
Meraj merged 6 commits from develop into main 2026-05-18 23:33:27 +00:00
Showing only changes of commit f61a0183e9 - Show all commits
+7
View File
@@ -21,6 +21,13 @@ public class Main {
break;
case 2:
System.out.println("Please enter genre ID: ");
long genreId = scanner.nextLong();
scanner.nextLine();
System.out.println("Enter page number: ");
long pageNum = scanner.nextLong();
scanner.nextLine();
movieService.displayMoviesByGenre(genreId, pageNum);
// TODO: Get genre ID and page from user, then call movieService.displayMoviesByGenre()
break;