public int RemoveFromCart(Candy candy) { return(_shoppingCartItemRepository.RemoveFromCart(candy, Id)); }
public void AddToCart(Candy candy, int amount) { _shoppingCartItemRepository.AddToCart(candy, amount, Id); }