Documentation change in DAO pattern

Issue: #53
Signed-off-by: Magesh Khanna Vadivelu <mvadivelu@turn.com>
This commit is contained in:
Magesh Khanna Vadivelu 2015-05-17 23:09:04 -07:00
parent b87918050c
commit 8055b9a414

View File

@ -6,7 +6,7 @@ import java.util.List;
/**
*
* With the DAO pattern, we can use various method calls to retrieve/add/delete/update data without directly
* interacting with the data directly. The below example demonstrates basic operations: select, add, update, and delete.
* interacting with the data. The below example demonstrates basic operations(CRUD): select, add, update, and delete.
*/
public class App {