Product constructor
Implementation
Product(this.quantity, this.name, this.description, double price, double tax){
if(quantity<1){
throw EEnzonaPayment("Quantity must be greater than zero");
}
if(price<=0){
throw EEnzonaPayment("Price must be greater than zero");
}
this.price = "${price}0";
this.tax = "${tax}0";
}