示例#1
0
 public IActionResult List()
 {
     try
     {
         return(Json(new { status = 200, ListComment = _commentService.ListComment(), message = "Complete" }));
     }
     catch
     {
         return(Json(new { status = 500, message = "Server Interval" }));
     }
 }