@ -8,8 +8,6 @@ namespace EShopOnAbp.BasketService
public BasketServiceApplicationAutoMapperProfile()
{
CreateMap<ProductEto, ProductDto>();
CreateMap<Basket, OrderAcceptedEto>();
CreateMap<BasketItem, OrderItemEto>();
}
@ -16,6 +16,10 @@
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\basket\src\EShopOnAbp.BasketService.Domain.Shared\EShopOnAbp.BasketService.Domain.Shared.csproj" />
<EmbeddedResource Include="Localization\CatalogService\*.json" />
<Content Remove="Localization\CatalogService\*.json" />
@ -9,7 +9,6 @@
<ProjectReference Include="..\EShopOnAbp.CatalogService.Domain.Shared\EShopOnAbp.CatalogService.Domain.Shared.csproj" />
@ -2,6 +2,7 @@
using System.Threading.Tasks;
using EShopOnAbp.BasketService;
using EShopOnAbp.CatalogService.Products;
using EShopOnAbp.OrderingService.Orders;
using Volo.Abp.DependencyInjection;
using Volo.Abp.Domain.Repositories;
using Volo.Abp.EventBus.Distributed;