Created
March 14, 2020 18:06
-
-
Save PatilShreyas/4a280b4ffd0e4c5574fd4ab1de70df33 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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