6 lines
97 B
Plaintext
6 lines
97 B
Plaintext
interface PriceableWithVAT6 extends Priceable {
|
|
|
|
default double getVAT() {
|
|
return 0.06;
|
|
}
|
|
} |