blob: af7144ef5d7f5e0b64b747ebf9157735a03daac1 [file] [log] [blame]
package example
import grails.gorm.multitenancy.CurrentTenant
import grails.gorm.transactions.ReadOnly
import grails.gorm.transactions.Transactional
/**
* Created by graemerocher on 06/04/2017.
*/
@CurrentTenant
@Transactional
class AnotherBookService {
Book saveBook(String title = 'The Stand') {
new Book(title: title).save()
}
@ReadOnly
int countBooks() {
Book.count()
}
}