public ActionResult Do_Edit(AppFeeFixInfo appFeeFixInfo) { try { AppFeeFixBL _obj_bl = new AppFeeFixBL(); decimal _ck = _obj_bl.AppFee_UpdateById(appFeeFixInfo); return(Json(new { success = _ck })); } catch (Exception ex) { Logger.LogException(ex); return(Json(new { success = -1 })); } }