public Review(User user, string text, Movie movie) { this.text = text; this.user = user; this.movie = movie; //Prilikom stvaranje recenzije, konstruktoru recenzije treba proslijediti //registriranog korisnika,referencu na film te tekst recenzije }
public FilterReviewByMovie(Movie movie) { this.movie = movie; }
public bool Pass(Movie movie) { return movie.genre == this.genre; }
public bool Pass(Movie movie) { return movie.director == this.director; }