Examples of Recargo


Examples of org.salamanca.domain.Recargo

     */
    public void execute() throws MessageException {
        PersistenceManager pm = BrokerServer.instance().getPMF().
                                getPersistenceManager();
        pm.currentTransaction().begin();
        Recargo recargoPM = (Recargo) pm.getObjectById(javax.jdo.JDOHelper.
                getObjectId(
                        recargo), true);

        recargoPM.setConcepto(concepto);
        recargoPM.setPorcentaje(porcentaje);

        pm.currentTransaction().commit();
    }
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.