package com.example.service; import com.example.model.Speaker; import java.util.List; public interface SpeakerService { List<Speaker> findALl(); }