private final Postgres9IndexDao indexDao;
private final Postgres9IndexDao editorIndexDao;
private final EntityEventMapper mapper;
public Postgres9EventDao() {
this.entityDao = new Postgres9EntityDao(ENTITY_TABLE_NAME);
this.indexDao = new Postgres9IndexDao(INDEX_TABLE_NAME);
this.editorIndexDao = new Postgres9IndexDao(EDITOR_INDEX_TABLE_NAME);
this.mapper = new EntityEventMapper();
}