source: src/main/java/com/example/autopartz/repository/PartIsInStockInWarehouseRepository.java@ 1bd8d1e

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

Added views and functionalities for deliveryman, warehouseman and admin

  • Property mode set to 100644
File size: 486 bytes
Line 
1package com.example.autopartz.repository;
2
3import com.example.autopartz.model.manytomany.PartIsInStockInWarehouse;
4import com.example.autopartz.model.manytomany.PartIsInStockInWarehouseId;
5import org.springframework.data.jpa.repository.JpaRepository;
6
7import java.util.List;
8
9public interface PartIsInStockInWarehouseRepository extends JpaRepository<PartIsInStockInWarehouse, PartIsInStockInWarehouseId> {
10 List<PartIsInStockInWarehouse> findAllByWarehouseid(Integer warehouseid);
11}
Note: See TracBrowser for help on using the repository browser.