main
Last change
on this file was ae042f4, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 23 months ago |
Configured spring security, changed spring version
|
-
Property mode
set to
100644
|
File size:
329 bytes
|
Line | |
---|
1 | package com.example.autopartz.repository;
|
---|
2 |
|
---|
3 | import com.example.autopartz.model.Part;
|
---|
4 | import com.example.autopartz.model.Price;
|
---|
5 | import org.springframework.data.jpa.repository.JpaRepository;
|
---|
6 |
|
---|
7 | import java.util.List;
|
---|
8 |
|
---|
9 | public interface PriceRepository extends JpaRepository<Price,Integer> {
|
---|
10 | List<Price> findAllByPart(Part part);
|
---|
11 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.