forked from kevin.shehu/GGD
15 lines
258 B
Plaintext
15 lines
258 B
Plaintext
import Knowledgebase.Product
|
|
|
|
rule "Offer for Diamond"
|
|
when
|
|
productObject: Product(type=="diamond")
|
|
then
|
|
productObject.setDiscount(15);
|
|
end
|
|
rule "Offer for Gold"
|
|
when
|
|
productObject: Product(type=="gold")
|
|
then
|
|
productObject.setDiscount(25);
|
|
end
|