ageLimit.setName(resultSet.getString("al_name"));
ageLimit.setMinAge(resultSet.getInt("al_min_age"));
ageLimit.setDescription(resultSet.getString("al_description"));
goods.setAgeLimit(ageLimit);
GoodsCondition goodsCondition = new GoodsCondition();
goodsCondition.setUid(resultSet.getInt("gc_uid"));
goodsCondition.setName(resultSet.getString("gc_name"));
goodsCondition.setDescription(resultSet.getString("gc_description"));
goods.setGoodsCondition(goodsCondition);
Country country = new Country();
country.setUid(resultSet.getInt("country_uid"));
country.setName(resultSet.getString("goods_from"));