public void AddScore(int userId, int movieId, int scoreValue)
 {
     _scoreRepository.AddMovieScore(userId, movieId, scoreValue);
 }