Last change
on this file was ab49338, checked in by KostaFortumanov <kfortumanov@…>, 3 years ago |
Dodadeno prijavuvanje na objavi
|
-
Property mode
set to
100644
|
File size:
284 bytes
|
Line | |
---|
1 | package it.finki.charitable.repository;
|
---|
2 |
|
---|
3 | import it.finki.charitable.entities.Reason;
|
---|
4 | import org.springframework.data.jpa.repository.JpaRepository;
|
---|
5 | import org.springframework.stereotype.Repository;
|
---|
6 |
|
---|
7 | @Repository
|
---|
8 | public interface ReasonRepository extends JpaRepository<Reason, Long> {
|
---|
9 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.