public CheckoutCommand(CheckoutActionFieldObject checkoutAction, IEnumerable<ProductFieldObject> lineItems) { _checkoutAction = checkoutAction; _lineItems = lineItems; }
public CheckoutOptionCommand(CheckoutActionFieldObject checkoutAction, EventCommand trackingEvent) { _checkoutAction = checkoutAction; _trackingEvent = trackingEvent; }
public CheckoutCommand(CheckoutActionFieldObject checkoutAction, IEnumerable <ProductFieldObject> lineItems) { _checkoutAction = checkoutAction; _lineItems = lineItems; }
public CheckoutStepMeasurement(string currencyCode, CheckoutActionFieldObject checkoutActionField, ProductFieldObject[] products) : base("checkout") { _productFields = products; _currencyCode = currencyCode; _checkoutActionField = checkoutActionField; }