Skip to content

Instantly share code, notes, and snippets.

@coyot
Created November 25, 2014 09:30
Show Gist options
  • Save coyot/0a936127d7061a0facb7 to your computer and use it in GitHub Desktop.
Save coyot/0a936127d7061a0facb7 to your computer and use it in GitHub Desktop.
public class CurrentDefaultColorWriter : IHourWriter
{
private IOutput _output;
public CurrentDefaultColorWriter(IOutput output)
{
this._output = output;
}
public void WriteHour()
{
this._output.Write(DateTime.Today.ToShortDateString());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment