Examples of DescuentoPorcentual


Examples of org.salamanca.domain.DescuentoPorcentual

            }
        }

        //-------------- PORCENTUAL
        if (porcentaje != 0) {
            DescuentoPorcentual descuentoPorcentual = new DescuentoPorcentual();
            descuentoPorcentual.setNombre(nombre);
            descuentoPorcentual.setPorcentaje(porcentaje);

            ICommand insertarDescuentoPorcentual = CommandFactory.
                    createInsertarDescuentoPorcentual(descuentoPorcentual);
            try {
                insertarDescuentoPorcentual.execute();
View Full Code Here

Examples of org.salamanca.domain.DescuentoPorcentual

        }

        PersistenceManager pm = BrokerServer.instance().getPMF().
                                getPersistenceManager();
        pm.currentTransaction().begin();
        DescuentoPorcentual descuentoPorcentualPM = (DescuentoPorcentual) pm.
                getObjectById(javax.jdo.
                              JDOHelper.getObjectId(descuentoPorcentual), true);

        pm.deletePersistent(descuentoPorcentualPM);
        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.