Esempio n. 1
0
        public JsonResult ChangeSection(int contentId, int sectionId)
        {
            ContentManagement objcontent = new ContentManagement(SessionCustom, HttpContext);

            return(this.Json(new
            {
                result = objcontent.ChangeSection(contentId, sectionId)
            }));
        }