Skip to content

Instantly share code, notes, and snippets.

@DannyRusnok
Created December 1, 2019 10:45
Show Gist options
  • Save DannyRusnok/1b0674a98c4d39a0d8f009f524ac4ad0 to your computer and use it in GitHub Desktop.
Save DannyRusnok/1b0674a98c4d39a0d8f009f524ac4ad0 to your computer and use it in GitHub Desktop.
public class TransactionGate{
...
var orderItems = GetOrderItems();
orderItems = GetUniqueOrderItems();
foreach(var orderItem in orderItems)
{
transactionBundle.Add(orderItem);
}
...
public List<OrderItem> GetUniqueOrderItems(){
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment