Exemplo n.º 1
0
        public JsonResult Delete(int id)
        {
            try
            {
                _Storage.DeleteGroup(id);

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