source: src/main/java/com/example/fooddeliverysystem/service/PriceService.java

Last change on this file was 8d11f8c, checked in by jovanmanchev <jovanmanchev3003@…>, 18 months ago

code added, trial 2

  • Property mode set to 100644
File size: 414 bytes
RevLine 
[8d11f8c]1package com.example.fooddeliverysystem.service;
2
3import com.example.fooddeliverysystem.exceptions.FoodItemNotFoundException;
4import com.example.fooddeliverysystem.model.FoodItem;
5import com.example.fooddeliverysystem.model.Price;
6
7import java.util.List;
8
9public interface PriceService {
10
11 List<Price> findAllPrices();
12 Price findCurrentPriceForFoodItem(FoodItem foodItem) throws FoodItemNotFoundException;
13}
Note: See TracBrowser for help on using the repository browser.