Exemplo n.º 1
0
        public ActionResult DoEditFunction(FunctionInfo functionInfo)
        {
            var result = new ActionBusinessResult();

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

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