source: src/main/java/com/example/autopartz/service/RepairShopService.java@ f484b14

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

Added full functionality for creating order

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