main
Last change
on this file was 4d67d70, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 23 months ago |
Final touches
|
-
Property mode
set to
100644
|
File size:
251 bytes
|
Line | |
---|
1 | package com.example.autopartz.service;
|
---|
2 |
|
---|
3 | import com.example.autopartz.model.Part;
|
---|
4 | import com.example.autopartz.model.Price;
|
---|
5 |
|
---|
6 | import java.util.List;
|
---|
7 |
|
---|
8 | public interface PriceService {
|
---|
9 | List<Price> findPriceForPart(Part part);
|
---|
10 | void save(Price p);
|
---|
11 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.