public async Task <IEnumerable <Comment> > GetCommentsAsync()
        {
            var reply = await _client.GetCommentsAsync(new GetCommentsRequest());

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