source: src/main/java/project/fmo/app/projcetfmo/Repository/CenaRepository.java

main
Last change on this file was d14176d, checked in by HristijanMitic00 <hristijan.mitic.01@…>, 12 months ago

First commit

  • Property mode set to 100644
File size: 369 bytes
Line 
1package project.fmo.app.projcetfmo.Repository;
2
3import org.springframework.data.jpa.repository.JpaRepository;
4import project.fmo.app.projcetfmo.Model.Cena;
5import project.fmo.app.projcetfmo.Model.CenaPK;
6
7public interface CenaRepository extends JpaRepository<Cena, CenaPK> {
8 Cena findByIdProdukt(Integer idProdukt);
9 void deleteByIdProdukt(Integer idProdukt);
10}
Note: See TracBrowser for help on using the repository browser.