Go to most recent revision | Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 259 | espaco | 1 | package br.com.ec.repository; |
| 2 | |||
| 3 | import br.com.ec.core.generic.GenericRepository; |
||
| 4 | import br.com.ec.domain.dto.VendedorDTO; |
||
| 5 | import br.com.ec.domain.model.Vendedor; |
||
| 6 | |||
| 7 | public interface VendedorRepository extends GenericRepository<Vendedor> { |
||
| 8 | |||
| 9 | VendedorDTO consultarVendedorPorPessoa(Long sequencialPessoa); |
||
| 10 | |||
| 11 | } |