/*
*
* Copyright (c) 2013 - 2014 INT - National Institute of Technology & COPPE - Alberto Luiz Coimbra Institute
- Graduate School and Research in Engineering.
* See the file license.txt for copyright permission.
*
*/
package DAO;
import java.util.List;
import modelo.HP;
import DAO.anotacao.RecuperaLista;
import DAO.generico.DaoGenerico;
public interface HPDAO extends DaoGenerico<HP, Long> {
@RecuperaLista
public List<HP> recuperaListaDeHP();
}