Rev 170 |
Blame |
Compare with Previous |
Last modification |
View Log
| Download
| RSS feed
package br.com.ec.infrastructure.repository;
import java.util.List;
import br.com.ec.core.generic.GenericRepository;
import br.com.ec.domain.model.PessoaPapel;
public interface PessoaPapelRepository
extends GenericRepository
<PessoaPapel
> {
List<PessoaPapel
> papeisDaPessoa
(PessoaPapel pessoaPapel
);
}