Basket Service
A service which handles all things around the basket
The basket service is what and handles all the UmbCheckout Basket operations.
You can access the basket service by injecting IBasketService
which can be found within the namespaceUmbCheckout.Core.Interfaces
Get
Gets the Basket
Add
Adds an item to the Basket
Parameters:
item
Add Multiple
Adds multiple items to the Basket
Parameters:
items
Reduce
Reduces the specified item by a count of 1 or removes from the Basket if only 1
Parameters:
key
Remove
Removes the specified item from the Basket
Parameters:
key
Remove Multiple
Removes multiple items from the Basket
Parameters:
keys
Clear
Removes all items from the Basket and clears any set Basket cookies
TotalItems
Returns the total item quantity count
SubTotal
Returns the Basket subtotal (minus any shipping or tax)
Last updated