Skip to content

Instantly share code, notes, and snippets.

View avegaraju's full-sized avatar
🤘
I may be slow to respond.

Ashish avegaraju

🤘
I may be slow to respond.
View GitHub Profile
public class Order
{
//properties removed for brevity
public decimal Checkout()
{
decimal amountToPay = 0;
foreach (var orderLine in this.OrderLines)
{
decimal discountAmount = GetApplicableDiscount(orderLine);