예제 #1
0
        public ActionResult Approve_Reject(string p_case_code, decimal p_status, string p_note)
        {
            decimal _result = 0;
            var     _NewsBL = new NewsBL();

            try
            {
                _result = _NewsBL.Update_Status(p_case_code, p_status, p_note, SessionData.CurrentUser.Username);
            }
            catch (Exception ex)
            {
                Logger.LogException(ex);
            }

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