Skip to content

Instantly share code, notes, and snippets.

@dimitris-papadimitriou-chr
Last active May 4, 2021 03:17
Show Gist options
  • Save dimitris-papadimitriou-chr/1ac1e7d39a5aabba28dde422e7c436fd to your computer and use it in GitHub Desktop.
Save dimitris-papadimitriou-chr/1ac1e7d39a5aabba28dde422e7c436fd to your computer and use it in GitHub Desktop.
public class Order
{
IList<Product> Products { get; }
public Order(IList<Product> products) => Products = products;
public double GetTotalPrice(IDiscountStrategy activeDiscount) =>
Products
.Select(activeDiscount.GetDiscountedPrice)
.Sum();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment