Sign in
apache
/
grails-data-hibernate6
/
64ae7f83bdaab85defa8c9469969299c896a5304
/
.
/
examples
/
grails-data-service
/
src
/
main
/
groovy
/
example
/
ClassUsingAService.groovy
blob: d549e5b12a9496b838268e7bb1647da17bbef79a [
file
] [
log
] [
blame
]
package
example
import
groovy
.
transform
.
CompileStatic
@CompileStatic
class
ClassUsingAService
{
TestService
testService
void
doSomethingWithTheService
()
{
testService
.
testDataService
(
1l
)
}
}