Exemple #1
0
        public JsonResult Delete(int id)
        {
            try
            {
                _Storage.DeleteNode(id);

                return(Json(new { status = true }));
            }
            catch (Exception)
            {
                return(Json(new { status = false }));
            }
        }