Browse Source

microservice demo: ProductAppService namespace fix

pull/746/head
Yunus Emre Kalkan 7 years ago
parent
commit
b4d0e40e13
  1. 2
      samples/MicroserviceDemo/modules/product/src/ProductManagement.Application.Contracts/MyCompanyName/ProductManagement/IProductAppService.cs
  2. 2
      samples/MicroserviceDemo/modules/product/src/ProductManagement.Application/MyCompanyName/ProductManagement/ProductAppService.cs

2
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
{

2
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
{

Loading…
Cancel
Save