source: src/main/java/com/example/autopartz/repository/PriceRepository.java@ feffc2f

main
Last change on this file since feffc2f was feffc2f, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 18 months ago

Added some views and functionalities

  • Property mode set to 100644
File size: 326 bytes
Line 
1package com.example.autopartz.repository;
2
3import com.example.autopartz.model.Part;
4import com.example.autopartz.model.Price;
5import org.springframework.data.jpa.repository.JpaRepository;
6
7import java.util.List;
8
9public interface PriceRepository extends JpaRepository<Price,Long> {
10 List<Price> findAllByPart(Part part);
11}
Note: See TracBrowser for help on using the repository browser.