Ignore:
Timestamp:
07/07/23 12:14:58 (12 months ago)
Author:
HristijanMitic00 <hristijan.mitic.01@…>
Branches:
main
Parents:
1dd9226
Message:

First commit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/project/fmo/app/projcetfmo/Service/NarackaSodrziProduktService.java

    r1dd9226 rd14176d  
    1 package project.fmo.app.projcetfmo.Service;public interface NarackaSodrziProduktService {
     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);
    218}
Note: See TracChangeset for help on using the changeset viewer.