Created
May 7, 2019 15:51
-
-
Save kasunkv/bfcce34ba12435c1233074367dceb597 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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