Ejemplo n.º 1
0
        public IActionResult SearchComment(string keyWord)
        {
            var listComment = _commentService.SearchComment(keyWord);

            return(Json(new { status = 200, listComment, message = "Complete" }));
        }