public void Post(Basket basket) { foreach (var item in basket.Products) { repository.AddUpdateBasket(basket.User, item.ProductId, item.Quantity); } }