public void RemoveProductQuantity(long shoppingCartId, long productId, int productQuantity)
 {
     _shoppingCartItemRepository.RemoveProductQuantity(shoppingCartId, productId, productQuantity);
 }