public interface AsyncTaskDAO extends DAO
AsyncTaskDAO defines a type which performs CRUD operations on instances of async_tasks.| Modifier and Type | Method and Description |
|---|---|
async_tasks |
get(Guid id)
Retrieves the task with the specified id.
|
List<async_tasks> |
getAll()
Retrieves all tasks.
|
void |
remove(Guid id)
Removes the task with the specified id.
|
void |
save(async_tasks task)
Saves the specified task.
|
void |
update(async_tasks task)
Updates the specified task.
|
async_tasks get(Guid id)
id - the task idList<async_tasks> getAll()
void save(async_tasks task)
task - the taskvoid update(async_tasks task)
task - the taskvoid remove(Guid id)
id - Copyright © 2012. All Rights Reserved.