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