Created
April 16, 2020 16:29
-
-
Save DannyRusnok/2b14ea58bc2c3a717f00f8ee458cc1a1 to your computer and use it in GitHub Desktop.
Mediator abstract class
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 abstract class Mediator | |
{ | |
public abstract void Send(string message, Colleague colleague); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment