Q44
Single choice
A developer has the following code block:
public class PaymentTax {public static decimal SalesTax = 0.0875;} trigger OpportunityLineItemTrigger on
OpportunityLineItem (before insert, before update) {PaymentTax PayTax = new PaymentTax();decimal
ProductTax = ProductCost * XXXXXXXXXXX;}
To calculate the productTax, which code segment would a developer insert at the XXXXXXXXXXX to make the value the class variable SalesTax accessible within the trigger?