Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created October 29, 2025 15:11
Show Gist options
  • Save dcomartin/be659c2ac79beab8983002d4837fd2a7 to your computer and use it in GitHub Desktop.
Save dcomartin/be659c2ac79beab8983002d4837fd2a7 to your computer and use it in GitHub Desktop.
public class Shipment
{
private readonly ISystemClock _clock;
public Shipment(ISystemClock clock)
{
_clock = clock;
}
public bool IsLate(DateTime expectedDelivery)
{
return _clock.Now() > expectedDelivery;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment