public async Task <Comment> SaveCommentAsync(Comment comment)
        {
            var request = new SaveCommentRequest
            {
                Comment = _mapper.Map <CommentMessage>(comment)
            };
            var reply = await _client.SaveCommentAsync(request);

            return(_mapper.Map <Comment>(reply.Comment));
        }