main
Last change
on this file was 4d67d70, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 23 months ago |
Final touches
|
-
Property mode
set to
100644
|
File size:
379 bytes
|
Line | |
---|
1 | package com.example.autopartz.repository;
|
---|
2 |
|
---|
3 | import com.example.autopartz.model.manytomany.PartIsAppropriateForCar;
|
---|
4 | import com.example.autopartz.model.manytomany.PartIsAppropriateForCarId;
|
---|
5 | import org.springframework.data.jpa.repository.JpaRepository;
|
---|
6 |
|
---|
7 | public interface PartIsAppropriateForCarRepository extends JpaRepository<PartIsAppropriateForCar, PartIsAppropriateForCarId> {
|
---|
8 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.