List<CostType> containsCostTypes = getCostTypes();
for (String costName : defaultCosts) {
costType = costTypeManager.findByName(costName);
if (costType == null) {
throw new ProTransException("Kan ikke finne kostnadstype "
+ costName);
}
if (!containsCostTypes.contains(costType)) {
orderCost = new OrderCost();