/// <summary>
        /// Initializes a new instance of the <see cref="ShoppingCartResponse"/> class.
        /// </summary>
        public ShoppingCartResponse(MosaicMessage message)
        {
            Interfaces.Messages.Sales.ShoppingCartResponse response = (Interfaces.Messages.Sales.ShoppingCartResponse)message;

            this.Id          = response.ID;
            this.Source      = response.Source;
            this.Destination = response.Destination;

            this.ShoppingCart = response.ShoppingCart;
        }
        /// <summary>
        /// Translates this object instance into a Mosaic message.
        /// </summary>
        /// <param name="converterStream">The converter stream instance which request the message conversion.</param>
        /// <returns>
        /// The Mosaic message representation of this object.
        /// </returns>
        public MosaicMessage ToMosaicMessage(IConverterStream converterStream)
        {
            var response = new Interfaces.Messages.Sales.ShoppingCartResponse(converterStream);

            response.ID          = this.Id;
            response.Source      = this.Source;
            response.Destination = this.Destination;

            response.ShoppingCart = this.ShoppingCart;

            return(response);
        }