Guest User

Untitled

a guest
Oct 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. package test
  2.  
  3. class Pais {
  4. String nombre
  5.  
  6. static hasMany = [estados:Estado]
  7.  
  8. static constraints = {
  9. nombre(blank:false)
  10. }
  11.  
  12. String toString() {
  13. nombre
  14. }
  15. }
Add Comment
Please, Sign In to add comment