Last active
December 5, 2018 16:59
-
-
Save laugri/2faa3385e4e5e8254c3e4be295142a40 to your computer and use it in GitHub Desktop.
DDD example - Value Object
This file contains hidden or 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
// An example of a Value Object | |
class Price { | |
amountInEuroCents: number | |
inEuros(): number { | |
// implementation | |
} | |
// other logic | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment