package com.example.rezevirajmasa.demo.service; import com.example.rezevirajmasa.demo.model.Menu; import java.math.BigDecimal; import java.util.List; public interface MenuService { public List getMenuByRestaurantId(Long restaurantId); public void updateMenuPrice(Long menuId, BigDecimal newPrice); public Menu getMenuById(Long id); }