Skip to content

Instantly share code, notes, and snippets.

@dance2die
Created February 24, 2018 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dance2die/91eccd44af4248a07ca031c7cb97c1d5 to your computer and use it in GitHub Desktop.
Save dance2die/91eccd44af4248a07ca031c7cb97c1d5 to your computer and use it in GitHub Desktop.
Sample Orders collection
private static List<Order> Orders = new List<Order>{
new Order(id: 1, quantity: 40, orderDate: new DateTime(2018, 1,1,1,1,1,1)),
new Order(id: 2, quantity: 20, orderDate: new DateTime(2018, 2,2,2,2,2,2)),
new Order(id: 3, quantity: 30, orderDate: new DateTime(2018, 3,3,3,3,3,3)),
new Order(id: 4, quantity: 10, orderDate: new DateTime(2018, 4,4,4,4,4,4)),
new Order(id: 5, quantity: 20, orderDate: new DateTime(2018, 5,5,5,5,5,5)),
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment