Update README.md

This commit is contained in:
2026-04-24 14:41:38 +00:00
parent 3631ba8545
commit 63eed8c84a
+4 -10
View File
@@ -52,19 +52,13 @@ Only complete the TODO methods.
### Your Tasks
1. Complete the `Genre` class (fields, constructor, getters, and setters).
1. Complete the `Movie` class (fields, constructor, getters, and setters).
2. Complete the `Movie` class (fields, constructor, getters, and setters).
2. Write a method that receives the JSON string returned by `getMoviesByGenreList()` and converts it into a `List<Movie>`.
3. Write a method that receives the JSON string returned by `getGenresList()` and converts it into a `List<Genre>`.
3. Write another method that displays the list of movies (for the selected genre) in a clean and readable format.
4. Write another method that prints the list of genres in a clean and readable format for the user.
5. Write a method that receives the JSON string returned by `getMoviesByGenreList()` and converts it into a `List<Movie>`.
6. Write another method that displays the list of movies in a clean and readable format.
7. Implement a console menu in `Main` that allows the user to:
4. Implement a console menu in `Main` that allows the user to:
- View the list of genres
- Select a genre
- View movies for the selected genre (with pagination)