main
Last change
on this file since e48199a was e48199a, checked in by Aleksandar Panovski <apano77@…>, 10 days ago |
Final version for DB
|
-
Property mode
set to
100644
|
File size:
355 bytes
|
Line | |
---|
1 | package com.example.rezevirajmasa.demo.service;
|
---|
2 |
|
---|
3 | import com.example.rezevirajmasa.demo.model.Menu;
|
---|
4 |
|
---|
5 | import java.math.BigDecimal;
|
---|
6 | import java.util.List;
|
---|
7 |
|
---|
8 | public interface MenuService {
|
---|
9 | public List<Menu> getMenuByRestaurantId(Long restaurantId);
|
---|
10 | public void updateMenuPrice(Long menuId, BigDecimal newPrice);
|
---|
11 | public Menu getMenuById(Long id);
|
---|
12 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.