Package br.com.sistelecom.entity

Examples of br.com.sistelecom.entity.VendaItem


       
        List<Integer> inseridos = this.getItensController().getListaDeItensInseridos();
       
        for (Integer idItemInserido : inseridos) {
         
          final VendaItem vendaItem = new VendaItem();
          vendaItem.setIdVenda(idVenda);
          vendaItem.setIdItem(idItemInserido);
         
          new VendaItemDAOImpl().salvar(vendaItem);
        }
       
        this.listarTodos();
View Full Code Here

TOP

Related Classes of br.com.sistelecom.entity.VendaItem

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.