Skip to content

Instantly share code, notes, and snippets.

@robinvanderknaap
Created July 8, 2017 18:48
Show Gist options
  • Save robinvanderknaap/35d1e87b87354b2743eac79eb8f46d22 to your computer and use it in GitHub Desktop.
Save robinvanderknaap/35d1e87b87354b2743eac79eb8f46d22 to your computer and use it in GitHub Desktop.
var customer = new Customer()
.setFirstname("Ad")
.setLastname("van de Kaart")
.addOrder(new Order()
.setProductId(3)
.setQuantity(10))
.addOrder(new Order()
.setProductId(7)
.setQuantity(5))
.save();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment