public async Task <CommentDTO> AddComment(CommentDTO dto, RemoteInfo remote)
        {
            var comment = Mapper.Map <CommentDTO, Comment>(dto);

            comment.Remote = remote;
            await _articleRepository.AddArticleComment(dto.PostId);

            await _commentRepository.Add(comment);

            return(dto);
        }