package dbnp.studycapturing /** * The PersonAffiliation class is an attribute of a Person, it represents an affiliation where she/he works for. * PersonAffiliation is an independent list of affiliations, and does not neccessarily belong to one Person. * * Revision information: * $Rev: 1426 $ * $Author: work@osx.eu $ * $Date: 2011-01-21 18:37:02 +0000 (vr, 21 jan 2011) $ */ class PersonAffiliation extends nl.grails.plugins.gdt.Identity { String institute String department String toString() { "${institute} / ${department}" } static constraints = { } }