138139140141142143144145146147
return price; } private static MemberPrice createMemberPrice(String currency, Float value) { MemberPrice mprice = new MemberPrice(); mprice.setCurrency(currency); mprice.setValue(new BigDecimal(value)); return mprice; }