@Override
public void addComment(Todo todo, String text) {
Comment comment = ao.create(Comment.class);
comment.setTodo(todo);
comment.setText(text);
comment.save();
}
@Override
public Todo findById(int id) {
//return ao.find(Todo.class, Query.select().where("id = ?", id);