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