public async Task UpdateQuantityProduct(int productId, int quantity)
        {
            var productQuantity = await _quantityRepository.GetByProductId(productId);

            if (productQuantity != null)
            {
                productQuantity.Quantity -= quantity;
                await _quantityRepository.SaveChanges();
            }
        }