Package br.edu.puc.campinas.si.pw.pucstore.model

Examples of br.edu.puc.campinas.si.pw.pucstore.model.Categoria


  }

  @Override
  public Categoria popularEntidade(ResultSet rs) throws Exception {
   
    Categoria cat = new Categoria();
    cat.setCodCategoria(rs.getInt("cod_categoria"));
    cat.setDescricao(rs.getString("descricao"));
    cat.setCategoriaMae(rs.getInt("categoria_mae"));
   
    return cat;
  }
View Full Code Here

TOP

Related Classes of br.edu.puc.campinas.si.pw.pucstore.model.Categoria

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.