Root/
| 1 | package info.ahlberg.spring.dao; |
| 2 | |
| 3 | import info.ahlberg.spring.domain.Contact; |
| 4 | |
| 5 | import org.springframework.stereotype.Repository; |
| 6 | |
| 7 | @Repository |
| 8 | public class ContactDAOWithJPA extends GenericDAOWithJPA<Contact, Long> implements ContactDAO { |
| 9 | |
| 10 | } |
| 11 |
