Exemple #1
0
 /// <summary>
 /// Takes in a review with an empty follower list.
 /// Gets the follower list from the repo.
 /// Adds follower list to review.
 /// </summary>
 /// <param name="review"></param>
 /// <returns>ReviewNotification</returns>
 public ReviewNotification GetFollowersForReviewNotification(ReviewNotification review)
 {
     review.Followers = _repo.GetFollowingMoviesByMovieID(review.Imdbid);
     return(review);
 }