Exemple #1
0
        public JsonResult Delete(int[] ids)
        {
            try
            {
                _Storage.DeleteNodes(new List <int>(ids));

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