source: src/main/java/com/example/autopartz/service/PartService.java@ ae042f4

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

Configured spring security, changed spring version

  • Property mode set to 100644
File size: 196 bytes
Line 
1package com.example.autopartz.service;
2
3import com.example.autopartz.model.Part;
4
5import java.util.List;
6
7public interface PartService {
8 List<Part> findAll();
9 Part findById(Integer id);
10}
Note: See TracBrowser for help on using the repository browser.