public List <Comment> GetCommentsOfUser([FromRoute] string userId)
        {
            List <Comment> comments = repository.CommentsOfUser(userId);

            return(comments);
        }