/* Product object */
function Product(
    ID,
    Name,
    Quantity,
    Size,
    Price,
    RasterValueID,
    Picture
){
    this.id = ID;
    this.name = Name;
    this.quantity = Quantity;
    this.size = Size;
    this.price= Price;
    this.rasterValueID = RasterValueID;
    this.picture = Picture;
}

/* PO object */
function PO(
    LeadID,
    RasterDDL,
    SizeLabel,
    SelectedSizeLabel,
    SelectedSizeTxt,
    SelectedSizeValidator
){
    this.leadID = LeadID,
    this.rasterDDL = RasterDDL;
    this.sizeLabel = SizeLabel;
    this.selectedSizeLabel = SelectedSizeLabel;
    this.selectedSizeTxt = SelectedSizeTxt;
    this.selectedSizeValidator = SelectedSizeValidator;

    this.activeSizeDimension = -1;
    this.selectedSizeDimension = -1;
    this.arrayAllSizeDimension = new Array();
}