After using the grails create-all command to generate a service interface, I would like to add some other methods that would require transactional scope for database updates. I'm made to understand that with grails 5 above, the ideal place to do it is in the services. But if I change the type from interface to class, seems like I need to implement all the other method calls, and if I continue to use interface, I can't add a body to the method. Haven't been able to find adequate reference for this yet to understand the full scope of what I need to do.
Thank you.