Created
February 11, 2021 18:24
-
-
Save alphamikle/a723a93d0dc7781ad1d6d273fb566168 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
// .. | |
@Transaction() | |
async savePurseInTransaction(purse: Purse, @TransactionManager() transactionManager: EntityManager = null) { | |
await transactionManager.save(Purse, purse); | |
} | |
// ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment