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

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