Пример #1
0
        public IActionResult CommentCount(string postId)
        {
            // Get comment count
            var getCount = _process.GetCommentCount(postId);

            return(Json(new { count = getCount }));
        }