source: src/main/java/com/example/autopartz/repository/PartManufacturerRepository.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: 255 bytes
Line 
1package com.example.autopartz.repository;
2
3import com.example.autopartz.model.PartManufacturer;
4import org.springframework.data.jpa.repository.JpaRepository;
5
6public interface PartManufacturerRepository extends JpaRepository<PartManufacturer,Integer> {
7}
Note: See TracBrowser for help on using the repository browser.