Created
July 8, 2017 18:48
-
-
Save robinvanderknaap/35d1e87b87354b2743eac79eb8f46d22 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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