Examples of SalesGuy


Examples of org.hibernate.ogm.backendtck.associations.manytoone.SalesGuy

    salesForce = new SalesForce( "red_hat" );
    salesForce.setCorporation( "Red Hat" );
    em.persist( salesForce );

    eric = new SalesGuy( "eric" );
    eric.setName( "Eric" );
    eric.setSalesForce( salesForce );
    salesForce.getSalesGuys().add( eric );
    em.persist( eric );

    simon = new SalesGuy( "simon" );
    simon.setName( "Simon" );
    simon.setSalesForce( salesForce );
    salesForce.getSalesGuys().add( simon );
    em.persist( simon );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.