develop #3

Closed
bitahajati wants to merge 4 commits from bitahajati/HW-03-oop-and-api:develop into main
Showing only changes of commit 33f19bfaa3 - Show all commits
+6 -3
View File
@@ -210,11 +210,14 @@ public class MovieService {
System.out.println("===============================================================================================");
System.out.println(" " + movie.getTitle() + " (" + movie.getYear() + ")");
System.out.println("===============================================================================================");
System.out.println("Movie ID: " + movie.getId());
System.out.println("Genres: " + genresReadable);
System.out.println("IMDB Rating: " + movie.getImdbRating() + " | " +"Votes : " + movie.getImdb_votes());
System.out.println("Movie ID : " + movie.getId());
System.out.println("Genres : " + genresReadable);
System.out.println("IMDB Rating : " + movie.getImdbRating() + " | " +"Votes : " + movie.getImdb_votes() + " | " + "IMDB id : " + movie.getImdb_id());
System.out.println("Meta Score : " + movie.getMetascore());
System.out.println("Director : " + movie.getDirector());
System.out.println("Cast : " + movie.getActors());
System.out.println("Writer : " + movie.getWriter());
System.out.println("Type : " + movie.getType());
System.out.println("Run time : " + movie.getRuntime() + " | " + "Rated : " + movie.getRated());
System.out.println("Country: " + movie.getCountry() + " | " + "Released : " + movie.getReleased());
System.out.println("Plot : " + movie.getPlot());