public ActionResult CheckDeleteSkill(SkillModel model) { try { #region " [ Declaration ] " SkillService _service = new SkillService(); #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, "CheckDeleteSkill", UserID, ex); } }