package com.example.service; import com.example.model.Enumerations.Status; import com.example.model.Event; import java.util.List; import java.util.Optional; public interface EventService { Event findById(Integer id); List findByClient(Integer client_id); Optional updateStatus(Integer event_id, Status status); List findAll(); void update(Event event); }