package whattocook.services; import whattocook.models.Item; import java.util.Optional; public interface ItemService { Item save(Item item); void deleteById(Long id); Optional findById(long id); Optional findByName(String name); Iterable findAll(); }