package com.example.baza.service; import com.example.baza.model.Avtor; import java.util.List; import java.util.Optional; public interface AvtorService { List findAll(); List findByImeLike(String ime); Optional findById(Integer id); void delete(Integer id); }