source: src/main/java/project/fmo/app/projcetfmo/Service/NarackaSodrziProduktService.java@ d14176d

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

First commit

  • Property mode set to 100644
File size: 692 bytes
Line 
1package project.fmo.app.projcetfmo.Service;
2
3import project.fmo.app.projcetfmo.Model.NarackaSodrziProdukt;
4
5import javax.persistence.criteria.CriteriaBuilder;
6import java.util.List;
7
8public interface NarackaSodrziProduktService {
9 NarackaSodrziProdukt findByIdProduktAndIdNaracka(Integer idP, Integer idN);
10 NarackaSodrziProdukt edit(Integer idP, Integer idN, Integer quantity, Integer price);
11 NarackaSodrziProdukt save(Integer idP, Integer idN, Integer quantity, Integer price);
12 List<NarackaSodrziProdukt> findByIdNaracka(Integer id);
13 void deleteProduct(Integer id);
14
15 List<NarackaSodrziProdukt> findAll();
16
17 List<NarackaSodrziProdukt> findByIdProdukt(Integer id);
18}
Note: See TracBrowser for help on using the repository browser.