Skip to content

Instantly share code, notes, and snippets.

@thomasmartin-whoz
Last active October 6, 2022 15:52
Show Gist options
  • Save thomasmartin-whoz/38da61fed557a6aac461d668b879f97f to your computer and use it in GitHub Desktop.
Save thomasmartin-whoz/38da61fed557a6aac461d668b879f97f to your computer and use it in GitHub Desktop.
class PersonGormRepositoryService implements PersonRepository {
@Override
Workspace findByFirstName(@NotNull String firstName) {
return Person.withStatelessSession { Person.findByFirstName(firstName) }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment