Last change
on this file was d3cf3a1, checked in by Marija Micevska <marija_micevska@…>, 2 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
312 bytes
|
Line | |
---|
1 | package project.educatum.repository;
|
---|
2 |
|
---|
3 | import org.springframework.data.jpa.repository.JpaRepository;
|
---|
4 | import org.springframework.stereotype.Repository;
|
---|
5 | import project.educatum.model.Admin;
|
---|
6 |
|
---|
7 | @Repository
|
---|
8 | public interface AdminRepository extends JpaRepository<Admin, Integer> {
|
---|
9 | Admin findByEmail(String email);
|
---|
10 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.