/** retourne le siret du fournisseur entreprise */ public String siret() { EOStructureUlr struct = structure(); if (struct != null) { return struct.siret(); } else { return null; } }
/** retourne les individus enregistr�s comme contacts de l'entreprise fournisseur courante */ public NSArray individusContactForFournis() { NSArray result; EOStructureUlr struct = structure(); if (struct != null) { NSDictionary args = new NSDictionary(struct.cStructure(), "idStructure"); result = EOUtilities.objectsWithFetchSpecificationAndBindings( editingContext(), "IndividuUlr", "individusContactForStructure", args); } else { result = new NSArray(); } return result; }