source:
src/main/java/it/finki/charitable/repository/DonationInformationRepository.java
Last change on this file was 3fc9e50, checked in by , 3 years ago | |
---|---|
|
|
File size: 261 bytes |
Line | |
---|---|
1 | package it.finki.charitable.repository; |
2 | |
3 | import it.finki.charitable.entities.DonationInformation; |
4 | import org.springframework.data.jpa.repository.JpaRepository; |
5 | |
6 | public interface DonationInformationRepository extends JpaRepository<DonationInformation, Long> { |
7 | } |
Note:
See TracBrowser
for help on using the repository browser.