public ActionResult GetRatingWords()
        {
            GetRatingWordsRequest request = new GetRatingWordsRequest();

            request.UserId = base.UserID;
            InterestService _interestService = new InterestService();

            request.InterestId = _interestService.GetUserInterestID(request.UserId);
            WordService     _wordService = new WordService();
            List <WordView> response     = _wordService.GetRatingWords(request);

            return(View(response));
        }