Examples of RamoRelatorio


Examples of br.com.sistelecom.entidade.relatorio.RamoRelatorio

    try{
      ps = conn.prepareStatement("select * from ramo");
      rs = ps.executeQuery();
      List<RamoRelatorio> listaRelatorio = new ArrayList<RamoRelatorio>();
      while(rs.next()) {
        listaRelatorio.add(new RamoRelatorio(rs.getInt(1), rs.getString(2)));
      }
      return listaRelatorio;
    } catch (Exception e) {
      e.printStackTrace();
    }
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.