Package de.xima.fc.dao.interfaces
Interface IAppointmentClosingTimeDao
-
- All Superinterfaces:
de.xima.cmn.dao.interfaces.IAbstractDao<AppointmentClosingTime,Long,IEntityContext>
,IGenericDao<AppointmentClosingTime>
- All Known Implementing Classes:
AppointmentClosingTimeDao
public interface IAppointmentClosingTimeDao extends IGenericDao<AppointmentClosingTime>
DAO for reading and writingIAppointmentClosingTime
entities.- Since:
- 7.3.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<AppointmentClosingTime>
getAllByTemplate(IEntityContext ec, AppointmentTemplate template)
Returns a list of all closing times for the given templateIAppointmentClosingTime
getByUUID(IEntityContext ec, AppointmentTemplate template, String uuid)
Returns the closing time with the given UUIDIAppointmentClosingTime
getByUUID(IEntityContext ec, AppointmentTemplate template, UUID uuid)
Returns the closing time with the given UUID-
Methods inherited from interface de.xima.cmn.dao.interfaces.IAbstractDao
all, bulkDelete, bulkUpdate, checkLockingVersion, create, create, delete, delete, deleteAll, executePagedDaoAction, getAttributes, getAttributes, getSingleAttributes, getSingleAttributes, getTransactionHandler, read, registerListener, registerListener, registerListener, resultTotalCount, setTransactionHandler, singleElement, unregisterListener, unregisterListener, unregisterListener, update, update
-
Methods inherited from interface de.xima.fc.dao.interfaces.IGenericDao
count, findAll, findSingle, getEntityRefs, read
-
-
-
-
Method Detail
-
getByUUID
IAppointmentClosingTime getByUUID(IEntityContext ec, AppointmentTemplate template, String uuid)
Returns the closing time with the given UUID- Parameters:
ec
-IEntityContext
to usetemplate
- TheAppointmentTemplate
to useuuid
-String
UUID of the closing time- Returns:
- The appointment closing time for the given UUID and template
-
getByUUID
IAppointmentClosingTime getByUUID(IEntityContext ec, AppointmentTemplate template, UUID uuid)
Returns the closing time with the given UUID- Parameters:
ec
-IEntityContext
to usetemplate
- TheAppointmentTemplate
to useuuid
-UUID
UUID of the closing time- Returns:
- The appointment closing time for the given UUID and template
-
getAllByTemplate
List<AppointmentClosingTime> getAllByTemplate(IEntityContext ec, AppointmentTemplate template)
Returns a list of all closing times for the given template- Parameters:
ec
-IEntityContext
to usetemplate
- TheAppointmentTemplate
to use- Returns:
- list of
AppointmentClosingTime
-
-