using Microsoft.eShopWeb.ApplicationCore.Entities.BasketAggregate; using Microsoft.eShopWeb.Web.Pages.Basket; namespace Microsoft.eShopWeb.Web.Interfaces; public interface IBasketViewModelService { Task GetOrCreateBasketForUser(string userName); Task CountTotalBasketItems(string username); Task Map(Basket basket); }