Created
July 9, 2017 09:05
-
-
Save robinvanderknaap/e886cef3d84282d48de20aee37d21345 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
class NewsLetter | |
{ | |
private IMailer mailer = null; | |
public NewsLetter(IMailer mailer) | |
{ | |
this.mailer = mailer; | |
} | |
public void SendNewsLetter(string Email) | |
{ | |
this.mailer.send(this, Email); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment