Created
December 8, 2024 09:19
-
-
Save emag/ef939dc479e0df05cfab9afd387bd4bb to your computer and use it in GitHub Desktop.
ドメインイベント
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
| enum BsEvent { | |
| case Initialized( | |
| assets: Map[AccountTitle, BigDecimal], | |
| liabilities: Map[AccountTitle, BigDecimal] | |
| ) | |
| case Journalized(journalEntry: JournalEntry) | |
| } |
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
| enum BsRejection { | |
| case NotReady | |
| case AlreadyInitialized | |
| case NegativeAmountJournalEntry | |
| case NegativeBalance | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment