Rev 761 | Go to most recent revision | Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 760 | blopes | 1 | package br.com.sl.repository.jpa; |
| 2 | |||
| 3 | import org.springframework.stereotype.Repository; |
||
| 4 | |||
| 5 | import br.com.sl.domain.model.Candle; |
||
| 6 | import br.com.sl.repository.CandleRepository; |
||
| 7 | import br.com.sl.repository.SistemaAbstractRepository; |
||
| 8 | |||
| 9 | @Repository |
||
| 10 | public class CandleRepositoryJpaImpl extends SistemaAbstractRepository<Candle> implements CandleRepository { |
||
| 11 | |||
| 12 | |||
| 13 | |||
| 14 | } |