Skip to content

Instantly share code, notes, and snippets.

@tadams
Created January 13, 2014 18:20
public class Employee {
JobRole jobRole;
public boolean isRaiseDue() {
return jobRole.isUnderSalaryBand() ||
jobRole.isHighTurnOverRole();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment