public ActionResult DoEditObject(WikiCatalogues_Info _ObjectInfo)
        {
            decimal _result = 0;

            try
            {
                var _ObjBL = new WikiCatalogue_BL();
                _ObjectInfo.MODIFIED_BY   = SessionData.CurrentUser.Username;
                _ObjectInfo.MODIFIED_DATE = DateTime.Now;
                _result = _ObjBL.WikiCatalogue_Update(_ObjectInfo);
            }
            catch (Exception ex)
            {
                Logger.LogException(ex);
            }

            return(Json(new { result = _result }));
        }