예제 #1
0
        public async Task <ActionResult> GetReplies(int id)
        {
            var topicRepliesFromRepo = await _repo.GetCircleEventCommentReplies(id);

            return(Ok(_mapper.Map <IEnumerable <CommentForReturnDto> >(topicRepliesFromRepo)));
        }