Database Service

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

GetBasket

The gets the stored Basket

Parameters:

NameDetail

sessionId

The session to retrieve the Basket for

Task<Basket?> GetBasket(string sessionId);

Last updated