private void AddPhysicalItemToCart(Customer customer, CartItem item, int currentStoreId) { var productId = item.GetProductIdFromPhysicalCartItem(); var attributesXml = item.GetAttributesXmlFromPhysicalCartItem(); var product = _productService.GetProductById(productId); _shoppingCartService.AddToCart( customer, product, ShoppingCartType.ShoppingCart, currentStoreId, attributesXml, quantity: item.Quantity); }