Package org.salamanca.domain

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

Related Classes of org.salamanca.domain.Recargo

Copyright © 2018 www.massapicom. 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.