private final Postgres9EntityDao entityDao;
private final Postgres9IndexDao indexDao;
private final EntityEventActivityMapper mapper;
public Postgres9EventActivityDao() {
this.entityDao = new Postgres9EntityDao(ENTITY_TABLE_NAME);
this.indexDao = new Postgres9IndexDao(INDEX_TABLE_NAME);
this.mapper = new EntityEventActivityMapper();
}