Skip to content

Instantly share code, notes, and snippets.

@Chibuikekenneth
Last active November 1, 2020 15:30
Show Gist options
  • Save Chibuikekenneth/270967c7a082067ecc4b4b17ede14b21 to your computer and use it in GitHub Desktop.
Save Chibuikekenneth/270967c7a082067ecc4b4b17ede14b21 to your computer and use it in GitHub Desktop.
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