Beispiel #1
0
        public ActionResult DeleteTag(int tagId)
        {
            var result = new { Success = false };

            if (_utilityManager.DeleteTag(tagId))
            {
                result = new { Success = true }
            }
            ;

            return(Json(result));
        }
    }