/// <summary>
 /// Adds the recommendation.
 /// </summary>
 /// <param name="movie">The movie.</param>
 /// <returns></returns>
 public int AddRecommendation(Movie movie)
 {
     return(_moviesRepository.AddRecommendation(movie));
 }