Ejemplo n.º 1
0
        public ActionResult DoDeleteCatalogue(int p_id)
        {
            decimal _result = 0;
            var     _ObjBL  = new WikiCatalogue_BL();

            try
            {
                //  var modifiedBy = SessionData.CurrentUser.Username;
                _result = _ObjBL.WikiCatalogue_Delete(p_id);
            }
            catch (Exception ex)
            {
                Logger.LogException(ex);
            }

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