Ovn1/PriceableWithVAT6

6 lines
97 B
Plaintext

interface PriceableWithVAT6 extends Priceable {
default double getVAT() {
return 0.06;
}
}