return requirementDto;
}
@Override
public PriceSetItem map(PriceSetItemDto priceSetItemDto, Class<PriceSetItem> priceSetItemClass) throws InvalidPriceException {
PriceSetItem priceSetItem = new PriceSetItem();
priceSetItem.setItemTypeID(priceSetItemDto.getItemTypeID());
priceSetItem.setItemCategoryID(priceSetItemDto.getItemCategoryID());
priceSetItem.setItemTypeName(priceSetItemDto.getItemTypeName());
priceSetItem.setItemTypeIcon(priceSetItemDto.getItemTypeIcon());
priceSetItem.setPrice(priceSetItemDto.getPrice().toPlainString());
return priceSetItem;
}