package com.example.demo.services;

import com.example.demo.entities.Item;

import java.util.List;

public interface ItemService {

    List<Item> getItems();

    Item getItemById(long productId);

    Item saveItem(Item item);

}