A service which handles storing of the Basket in the database
The database service is what handles the retrieval of the UmbCheckout Basket within the database.
You can access the database service by injecting IDatabaseService which can be found within the namespaceUmbCheckout.Core.Interfaces
IDatabaseService
UmbCheckout.Core.Interfaces
The gets the stored Basket
Parameters:
sessionId
The session to retrieve the Basket for
Task<Basket?> GetBasket(string sessionId);
Last updated 2 years ago