public interface IDataEntityDAO
| Modifier and Type | Method and Description |
|---|---|
void |
delete(String strKey)
Delete a record from the table
|
void |
insert(DataEntity entity)
Insert a new record in the table.
|
DataEntity |
load(String strKey)
Load the data from the table
|
List<DataEntity> |
selectEntitiesList()
Load the data of all entities and returns them as a List
|
void |
store(DataEntity entity)
Update the record in the table
|
void insert(DataEntity entity)
entity - instance of the Entity object to insertvoid store(DataEntity entity)
entity - the reference of the Entityvoid delete(String strKey)
strKey - The identifier of the Entity to deleteDataEntity load(String strKey)
strKey - The identifier of the propertyList<DataEntity> selectEntitiesList()
Copyright © 2020 City of Paris. All rights reserved.