Table of Contents

Class ExperimentUtilities

Namespace
Dynamicweb.Ecommerce.Analytics
Assembly
Dynamicweb.Ecommerce.dll
Class ExperimentUtilities.
[Obsolete("Do not use")]
public class ExperimentUtilities
Inheritance
ExperimentUtilities
Inherited Members

Methods

GetOneHighestTotalMarkupOrder(int, int, DateTime, string)

Returns data for highest total markup order
public static Tuple<double, int> GetOneHighestTotalMarkupOrder(int viewID, int pageID, DateTime viewDate, string visitorID)

Parameters

viewID int
The view identifier.
pageID int
Page Id.
viewDate DateTime
Date when the page has been viewed.
visitorID string
ID of visitor which viewwed the page.

Returns

Tuple<double, int>
Tuple(Of System.Double, System.Int32).

GetOneHighestTotalValueOrder(int, int, DateTime, string)

Returns data for highest total markup order provider
public static Tuple<double, int> GetOneHighestTotalValueOrder(int viewID, int pageID, DateTime viewDate, string visitorID)

Parameters

viewID int
View Id.
pageID int
Page Id.
viewDate DateTime
Date when the page has been viewed.
visitorID string
ID of visitor which viewed the page.

Returns

Tuple<double, int>
Tuple(Of System.Double, System.Int32).

GetTotalAndAverageOrderValue(int, bool)

Returns data for total and average order values
public static Tuple<double, double> GetTotalAndAverageOrderValue(int experimentID, bool isOriginal)

Parameters

experimentID int
Experiment Id.
isOriginal bool
Is original or variants.

Returns

Tuple<double, double>
Tuple(Of System.Double, System.Double).
To top