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

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

Added some views and functionalities

  • Property mode set to 100644
File size: 193 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(Long id);
10}
Note: See TracBrowser for help on using the repository browser.