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 writingIAppointmentClosingTimeentities.- 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 templateIAppointmentClosingTimegetByUUID(IEntityContext ec, AppointmentTemplate template, String uuid)Returns the closing time with the given UUIDIAppointmentClosingTimegetByUUID(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-IEntityContextto usetemplate- TheAppointmentTemplateto useuuid-StringUUID 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-IEntityContextto usetemplate- TheAppointmentTemplateto useuuid-UUIDUUID 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-IEntityContextto usetemplate- TheAppointmentTemplateto use- Returns:
 - list of 
AppointmentClosingTime 
 
 - 
 
 -