Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | package br.edu.cesmac.sic.core.domain.service; |
| 2 | |||
| 3 | import java.util.List; |
||
| 4 | |||
| 5 | import br.edu.cesmac.core.generic.GenericService; |
||
| 6 | import br.edu.cesmac.sic.core.domain.model.Bolsa; |
||
| 7 | |||
| 8 | public interface BolsaService extends GenericService<Bolsa> { |
||
| 9 | |||
| 10 | List<Bolsa> consultarBolsasAtivas(); |
||
| 11 | |||
| 12 | } |