Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Last active April 10, 2025 18:45
Show Gist options
  • Save dcomartin/691cf4920cfca731a9b214344289ba56 to your computer and use it in GitHub Desktop.
Save dcomartin/691cf4920cfca731a9b214344289ba56 to your computer and use it in GitHub Desktop.
public class PlaceOrder
{
private readonly TimeProvider _timeProvider;
public PlaceOrder(TimeProvider timeProvider)
{
_timeProvider = timeProvider;
}
public Order Process()
{
var now = _timeProvider.GetUtcNow();
var total = now.DayOfWeek == DayOfWeek.Friday ? 50 : 100;
return new Order(now, total);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment