public CommentDto GetCommentById(Guid commentId)
        {
            Comment    comment = _articlesRepository.GetCommentById(commentId);
            CommentDto dto     = _mapper.Map <CommentDto>(comment);

            return(dto);
        }