From b4d0e40e13fae478748ba6f4ea48a9c4d94887e9 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Fri, 18 Jan 2019 17:31:52 +0300 Subject: [PATCH] microservice demo: ProductAppService namespace fix --- .../MyCompanyName/ProductManagement/IProductAppService.cs | 2 +- .../MyCompanyName/ProductManagement/ProductAppService.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/MicroserviceDemo/modules/product/src/ProductManagement.Application.Contracts/MyCompanyName/ProductManagement/IProductAppService.cs b/samples/MicroserviceDemo/modules/product/src/ProductManagement.Application.Contracts/MyCompanyName/ProductManagement/IProductAppService.cs index cfb3aa2c56..5e1b1eea3a 100644 --- a/samples/MicroserviceDemo/modules/product/src/ProductManagement.Application.Contracts/MyCompanyName/ProductManagement/IProductAppService.cs +++ b/samples/MicroserviceDemo/modules/product/src/ProductManagement.Application.Contracts/MyCompanyName/ProductManagement/IProductAppService.cs @@ -3,7 +3,7 @@ using System.Threading.Tasks; using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; -namespace MyCompanyName.ProductManagement +namespace ProductManagement { public interface IProductAppService : IApplicationService { diff --git a/samples/MicroserviceDemo/modules/product/src/ProductManagement.Application/MyCompanyName/ProductManagement/ProductAppService.cs b/samples/MicroserviceDemo/modules/product/src/ProductManagement.Application/MyCompanyName/ProductManagement/ProductAppService.cs index b2d261898e..d32d1c1800 100644 --- a/samples/MicroserviceDemo/modules/product/src/ProductManagement.Application/MyCompanyName/ProductManagement/ProductAppService.cs +++ b/samples/MicroserviceDemo/modules/product/src/ProductManagement.Application/MyCompanyName/ProductManagement/ProductAppService.cs @@ -6,7 +6,7 @@ using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; using Volo.Abp.Domain.Repositories; -namespace MyCompanyName.ProductManagement +namespace ProductManagement { public class ProductAppService : ApplicationService, IProductAppService {