Created
April 22, 2020 17:27
-
-
Save isidore/6475a8f8fe9775123075e47f93314683 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
public class ProgrammableReporter : IEnvironmentAwareReporter | |
{ | |
public static IEnvironmentAwareReporter PassTo { get; set; } | |
public void Report(string approved, string received) | |
{ | |
PassTo.Report(approved, received); | |
} | |
public bool IsWorkingInThisEnvironment(string forFile) | |
{ | |
return PassTo.IsWorkingInThisEnvironment(forFile); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment