Last active
October 29, 2020 15:47
-
-
Save Chibuikekenneth/23fb7e9d968b72213c0b4e87aad3c966 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
public class HavardUniversity : ISchool | |
{ | |
public string Learn(string student) | |
{ | |
return string.Format($"My name is {student}, and I attend Havard"); | |
} | |
} | |
public class OxfordUniversity : ISchool | |
{ | |
public string Learn(string student) | |
{ | |
return string.Format($"My name is {student}, and I attend Oxford"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment