public int changePasswordBL(int ID, string OldPass, string NewPass) { try { int result = employeeDALObject.ChangePasswordDL(ID, OldPass, NewPass); return(result); } catch (Exception e) { throw e; } }