Uses of Class
br.com.pethub.model.Schedule
Packages that use Schedule
Package
Description
This package contains the Data Access Object (DAO) classes for the PetHub application.
-
Uses of Schedule in br.com.pethub.dao
Methods in br.com.pethub.dao that return types with arguments of type ScheduleModifier and TypeMethodDescriptionServicesDAO.listSchedules()
This method is used to retrieve a list of all schedules from the database.ServicesDAO.listSchedules
(LocalDate date_start, LocalDate date_end) This method is used to retrieve a list of schedules within a date range from the database.ServicesDAO.listSchedulesForToday()
This method is used to retrieve a list of schedules for today from the database.Methods in br.com.pethub.dao with parameters of type ScheduleModifier and TypeMethodDescriptionvoid
ServicesDAO.addSchedule
(Schedule obj) This method is used to add a schedule to the database.boolean
ServicesDAO.checkScheduleConflict
(Schedule obj) This method is used to check if a schedule conflicts with an existing one.void
ServicesDAO.deleteSchedule
(Schedule obj) This method is used to delete a schedule from the database.void
ServicesDAO.editSchedule
(Schedule obj) This method is used to edit a schedule in the database.