source: src/main/java/com/example/repository/PhotographerRepository.java

Last change on this file was a51a591, checked in by colovik <j.colovik@…>, 14 months ago

final

  • Property mode set to 100644
File size: 397 bytes
Line 
1package com.example.repository;
2
3import com.example.model.Photographer;
4import org.springframework.data.jpa.repository.JpaRepository;
5import org.springframework.stereotype.Repository;
6
7import java.util.List;
8
9@Repository
10public interface PhotographerRepository extends JpaRepository<Photographer, Integer> {
11 List<Photographer> findAll();
12 List<Photographer> findAllByName (String name);
13
14}
Note: See TracBrowser for help on using the repository browser.