Last active
November 4, 2020 21:14
-
-
Save Chibuikekenneth/41aa198d654b9742699c4e9f86b5b87b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var schoolInstance = new School(); | |
schoolInstance.AttendClass("Anthony"); | |
var oxford = new OxfordUniversity(); | |
//Injecting the dependency via a property, which is the School Property | |
schoolInstance.school = oxford; | |
schoolInstance.AttendClass("Kenneth"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment