moneyutils/src/main/kotlin/com/cubetiqs/libra/moneyutils/MoneyArithmetic.kt

5 lines
155 B
Kotlin
Raw Permalink Normal View History

package com.cubetiqs.libra.moneyutils
fun StdMoney.addMoney(value: Double, currency: String): StdMoney {
return this + Money.create(value, currency)
}