Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Created March 14, 2020 18:06
Show Gist options
  • Save PatilShreyas/4a280b4ffd0e4c5574fd4ab1de70df33 to your computer and use it in GitHub Desktop.
Save PatilShreyas/4a280b4ffd0e4c5574fd4ab1de70df33 to your computer and use it in GitHub Desktop.
public class Job {
public Education mEducation;
@Inject
public Job(Education education) {
this.mEducation = education;
if (mEducation != null) {
System.out.println("I've Job!");
} else {
System.out.println("I'm not well educated!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment