Skip to content

Instantly share code, notes, and snippets.

@kasunkv
Created May 7, 2019 15:51
Show Gist options
  • Save kasunkv/bfcce34ba12435c1233074367dceb597 to your computer and use it in GitHub Desktop.
Save kasunkv/bfcce34ba12435c1233074367dceb597 to your computer and use it in GitHub Desktop.
public class OrderDiscountProcessor : IDiscountProcessor
{
private readonly IEnumerable<IDiscount> _discounts;
public OrderDiscountProcessor(IEnumerable<IDiscount> discounts)
{
_discounts = discounts;
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment