From 1a2dda6d79d3dd68f3009edb3dbb59bdf0b1b9e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Sat, 28 Jun 2025 13:25:53 +0300 Subject: [PATCH] Fix part-06 --- docs/en/tutorials/modular-crm/part-06.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/docs/en/tutorials/modular-crm/part-06.md b/docs/en/tutorials/modular-crm/part-06.md index 568fa4d800..5ce9d8aad0 100644 --- a/docs/en/tutorials/modular-crm/part-06.md +++ b/docs/en/tutorials/modular-crm/part-06.md @@ -56,11 +56,10 @@ Open the `IProductIntegrationService.cs` file and replace it's content with the using System; using System.Collections.Generic; using System.Threading.Tasks; -using ModularCrm.Catalog; using Volo.Abp; using Volo.Abp.Application.Services; -namespace ModularCrm.Products.Integration; +namespace ModularCrm.Catalog.Integration; [IntegrationService] public interface IProductIntegrationService : IApplicationService @@ -91,11 +90,10 @@ Open the `ProductIntegrationService.cs` file and replace its content with the fo using System; using System.Collections.Generic; using System.Threading.Tasks; -using ModularCrm.Catalog; using Volo.Abp; using Volo.Abp.Domain.Repositories; -namespace ModularCrm.Products.Integration; +namespace ModularCrm.Catalog.Integration; [IntegrationService] public class ProductIntegrationService @@ -152,13 +150,12 @@ using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using ModularCrm.Products.Integration; -using Volo.Abp.Application.Services; +using ModularCrm.Catalog.Integration; using Volo.Abp.Domain.Repositories; namespace ModularCrm.Ordering; -public class OrderAppService : ApplicationService, IOrderAppService +public class OrderAppService : OrderingAppService, IOrderAppService { private readonly IRepository _orderRepository; private readonly IProductIntegrationService _productIntegrationService;