public void updated(CantidadUnidadPresentacion cliente) throws Exception { log.info("Update CantidadUnidadPresentacion: " + cliente.getCantidad()); em.merge(cliente); CantUnitPresEventSrc.fire(cliente); }
public void remover(CantidadUnidadPresentacion proveedor) { log.info("Remover CantidadUnidadPresentacion: " + proveedor.getCantidad()); proveedor.setEstado("RM"); em.merge(proveedor); CantUnitPresEventSrc.fire(proveedor); }
public void register(CantidadUnidadPresentacion cliente) throws Exception { log.info("Registering " + cliente.getCantidad()); em.merge(cliente); CantUnitPresEventSrc.fire(cliente); }