Skip to content

Commit 27fae7c

Browse files
Fixed namespace copied/pasted from the Locations.API service into the Marketing service
1 parent 260b2cd commit 27fae7c

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/Services/Marketing/Marketing.API/Controllers/CampaignsController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Microsoft.eShopOnContainers.Services.Locations.API.Infrastructure.Services;
1+
using Microsoft.eShopOnContainers.Services.Marketing.API.Infrastructure.Services;
22

33
namespace Microsoft.eShopOnContainers.Services.Marketing.API.Controllers
44
{

src/Services/Marketing/Marketing.API/Infrastructure/Services/IIdentityService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Microsoft.eShopOnContainers.Services.Locations.API.Infrastructure.Services
1+
namespace Microsoft.eShopOnContainers.Services.Marketing.API.Infrastructure.Services
22
{
33
public interface IIdentityService
44
{

src/Services/Marketing/Marketing.API/Infrastructure/Services/IdentityService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Microsoft.eShopOnContainers.Services.Locations.API.Infrastructure.Services
1+
namespace Microsoft.eShopOnContainers.Services.Marketing.API.Infrastructure.Services
22
{
33
using AspNetCore.Http;
44
using System;

src/Services/Marketing/Marketing.API/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using Infrastructure;
1717
using Infrastructure.Filters;
1818
using Infrastructure.Repositories;
19-
using Locations.API.Infrastructure.Services;
19+
using Infrastructure.Services;
2020
using Extensions.Configuration;
2121
using Extensions.DependencyInjection;
2222
using Extensions.Logging;

0 commit comments

Comments
 (0)