public ShoppingCartItemList Get(int customerId)
        {
            IEnumerable <ShoppingCartItem> shoppingCartItems    = _shoppingCartItemService.GetAllCartItems(customerId);
            ShoppingCartItemList           shoppingCartItemList = shoppingCartItems.ToModels();

            return(shoppingCartItemList);
        }