﻿function cdk_Enum() { }
cdk_Enum.Types = { ProductPrice: 'ProductPrice', Product: 'Product' }
function cdk_Stat_Detail(type, value, title) {
    if (typeof type == 'undefined') type = cdk_Enum.Types.Details;
    if (typeof title == 'undefined') title = type;
    this.Type = type; this.Title = title; this.Value = value;
}
var cdk_Details = new Array();
cdk_Details.add = function(value, type, title) {
    cdk_Details.push(new cdk_Stat_Detail(type, value, title));
}     
