source: src/main/java/com/example/autopartz/repository/PartIsFromCategoryRepository.java@ 4d67d70

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

Final touches

  • Property mode set to 100644
File size: 354 bytes
Line 
1package com.example.autopartz.repository;
2
3import com.example.autopartz.model.manytomany.PartIsFromCategory;
4import com.example.autopartz.model.manytomany.PartIsFromCategoryId;
5import org.springframework.data.jpa.repository.JpaRepository;
6
7public interface PartIsFromCategoryRepository extends JpaRepository<PartIsFromCategory, PartIsFromCategoryId> {
8}
Note: See TracBrowser for help on using the repository browser.