Ovn1/PriceableWithVAT25

6 lines
97 B
Plaintext

interface PriceableWithVAT25 extends Priceable{
default double getVAT() {
return 0.25;
}
}