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