Examples of PublicacaoDAO


Examples of in980.rgms.persistence.PublicacaoDAO

  public String searchByName() throws Exception {
    ArtigoConferencia ac = new ArtigoConferencia();
    ac.setTitulo(tituloPublicacao);
    ac.setAno(ano);
   
    publicacoes = new PublicacaoDAO().buscar(ac);   
    return "success";
  }
View Full Code Here

Examples of in980.rgms.persistence.PublicacaoDAO

    List<Membro> listMembros = new MembroDAO().listaTodos();
    return listMembros;
  }

  public List<Publicacao> getPublicacoes() {
    return new PublicacaoDAO().listaTodos();
  }
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.