Last active
November 1, 2020 15:30
-
-
Save Chibuikekenneth/270967c7a082067ecc4b4b17ede14b21 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 School | |
{ | |
private readonly ISchool _school; | |
public School(ISchool school) | |
{ | |
this._school = school; | |
} | |
public string AttendClass(string student) | |
{ | |
return this._school.Learn(student); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment