Пример #1
0
        public JsonResult AddLike(int StoryID)
        {
            StoryManager sm        = new StoryManager();
            int          LikeCount = sm.AddLike(StoryID);

            return(Json(LikeCount));
        }