コード例 #1
0
ファイル: JobGradeController.cs プロジェクト: sunjayp888/HR
 public ActionResult CanDeleteJobGrade(int id)
 {
     try
     {
         return(this.JsonNet(HRBusinessService.CanDeleteJobGrade(UserOrganisationId, id)));
     }
     catch (Exception ex)
     {
         return(this.JsonNet(ex));
     }
 }