Exemplo n.º 1
0
        public ActionResult DoDeleteFunction(int functionId)
        {
            var result = new ActionBusinessResult();

            try
            {
                var functionBL = new FunctionBL();
                result = functionBL.DeleteFunction(functionId);
            }
            catch (Exception ex)
            {
                Logger.LogException(ex);
            }

            return(Json(new { result = result.ToJson() }));
        }