package com.example.nto.service; import org.springframework.stereotype.Service; import java.util.Map; @Service public interface BookingService { Map findAvailableBookings(String employeeCode); }