private associativeEntity BuildWidthData(string width)
        {
            catalogAttributeOptionEntity option = _widthAttributeOptions.Single(p => p.label.Equals(this.FormatWidth(width)));

            return(new associativeEntity()
            {
                key = "width_womens", value = option.value
            });
        }
        private associativeEntity BuildSizeData(string size)
        {
            catalogAttributeOptionEntity option = _sizeAttributeOptions.Single(p => p.label.Equals(size));

            return(new associativeEntity()
            {
                key = "size_womens_shoes", value = option.value
            });
        }