public JsonResult CheckDelete(IdeaModel model) { try { #region " [ Declaration ] " IdeaService _service = new IdeaService(); #endregion #region " [ Main process ] " model.CreateBy = UserID; #endregion //Call to service return(this.Json(_service.CheckDelete(model), JsonRequestBehavior.AllowGet)); } catch (ServiceException serviceEx) { throw serviceEx; } catch (DataAccessException accessEx) { throw accessEx; } catch (Exception ex) { throw new ControllerException(FILE_NAME, "CheckDelete", UserID, ex); } }