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

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