resolution.setCollaborator(findEntity(Collaborator.class, details.collaboratorID));
resolution.setDescription(details.description);
resolution.setMkb10(details.mkb10 != 0 ? findEntity(Mkb10.class, details.mkb10) : null);
resolution.setRendered(details.rendered);
int id = saveEntity(resolution);
return new ModificationInfo(id, persistAudit(auditDoc));
}