diff --git a/apps/public-web/src/EShopOnAbp.PublicWeb/BasketProductEventHandler.cs b/apps/public-web/src/EShopOnAbp.PublicWeb/BasketProductEventHandler.cs index d670d30b..17b39bb9 100644 --- a/apps/public-web/src/EShopOnAbp.PublicWeb/BasketProductEventHandler.cs +++ b/apps/public-web/src/EShopOnAbp.PublicWeb/BasketProductEventHandler.cs @@ -1,5 +1,5 @@ using System.Threading.Tasks; -using EShopOnAbp.BasketService; +using EShopOnAbp.BasketService.Entities; using Microsoft.AspNetCore.SignalR; using Volo.Abp.DependencyInjection; using Volo.Abp.EventBus.Distributed; diff --git a/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Basket/Default.cshtml b/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Basket/Default.cshtml index 995a0f1a..70b8ea2a 100644 --- a/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Basket/Default.cshtml +++ b/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Basket/Default.cshtml @@ -1,7 +1,7 @@ @using EShopOnAbp.Localization @using EShopOnAbp.PublicWeb.Components.Purchase @using Microsoft.Extensions.Localization -@model EShopOnAbp.BasketService.BasketDto +@model EShopOnAbp.BasketService.Services.Dtos.BasketDto @inject IStringLocalizer L
diff --git a/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Payment/PaymentWidgetViewComponent.cs b/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Payment/PaymentWidgetViewComponent.cs index 85020fde..39af63b3 100644 --- a/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Payment/PaymentWidgetViewComponent.cs +++ b/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Payment/PaymentWidgetViewComponent.cs @@ -1,7 +1,6 @@ using System.Collections.Generic; using System.Threading.Tasks; -using EShopOnAbp.BasketService; -using EShopOnAbp.PaymentService.PaymentMethods; +using EShopOnAbp.BasketService.Services.Dtos; using EShopOnAbp.PublicWeb.ServiceProviders; using Microsoft.AspNetCore.Mvc; using Volo.Abp.AspNetCore.Mvc; diff --git a/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Purchase/PurchaseWidgetViewComponent.cs b/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Purchase/PurchaseWidgetViewComponent.cs index ca7699b5..76b0eede 100644 --- a/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Purchase/PurchaseWidgetViewComponent.cs +++ b/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Purchase/PurchaseWidgetViewComponent.cs @@ -1,5 +1,5 @@ using System.Threading.Tasks; -using EShopOnAbp.BasketService; +using EShopOnAbp.BasketService.Services.Dtos; using Microsoft.AspNetCore.Mvc; using Volo.Abp.AspNetCore.Mvc; using Volo.Abp.AspNetCore.Mvc.UI.Widgets; diff --git a/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Toolbar/Cart/Default.cshtml b/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Toolbar/Cart/Default.cshtml index 62cbfb03..8509b035 100644 --- a/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Toolbar/Cart/Default.cshtml +++ b/apps/public-web/src/EShopOnAbp.PublicWeb/Components/Toolbar/Cart/Default.cshtml @@ -1,8 +1,7 @@ @using EShopOnAbp.BasketService.Localization -@using EShopOnAbp.PublicWeb.Components.Basket @using Microsoft.AspNetCore.Mvc.Localization @inject IHtmlLocalizer L -@model EShopOnAbp.BasketService.BasketDto +@model EShopOnAbp.BasketService.Services.Dtos.BasketDto