package oose.dea.services; import oose.dea.domain.Item; import java.util.List; public interface ItemService { List<Item> findAll(); }