Sign in
apache
/
grails-data-mapping
/
ecc608831967aee5f035b1bba28dee848aaa93e7
/
.
/
grails-data-hibernate5
/
examples
/
issue450
/
grails-app
/
services
/
multitenantcomposite
/
BookService.groovy
blob: 8916013b8e6a3e3f2a3f9ba50d854d3a51985e2e [
file
] [
log
] [
blame
]
package
multitenantcomposite
import
grails
.
gorm
.
multitenancy
.
CurrentTenant
import
grails
.
gorm
.
services
.
Service
@CurrentTenant
@Service
(
Book
)
interface
BookService
{
Book
save
(
String
id
,
String
title
)
List
<
Book
>
find
()
}