Пример #1
0
        public JsonResult GetNewComment(int postId, int lastId, int userId)
        {
            var dt = _postService.GetNewComment(postId, lastId, userId);

            return(Json(dt, JsonRequestBehavior.AllowGet));
        }