Browse Source

Fixed namespace copied/pasted from the Locations.API service into the Marketing service

pull/241/head
Cesar De la Torre 7 years ago
parent
commit
27fae7c5d3
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      src/Services/Marketing/Marketing.API/Controllers/CampaignsController.cs
  2. +1
    -1
      src/Services/Marketing/Marketing.API/Infrastructure/Services/IIdentityService.cs
  3. +1
    -1
      src/Services/Marketing/Marketing.API/Infrastructure/Services/IdentityService.cs
  4. +1
    -1
      src/Services/Marketing/Marketing.API/Startup.cs

+ 1
- 1
src/Services/Marketing/Marketing.API/Controllers/CampaignsController.cs View File

@ -1,4 +1,4 @@
using Microsoft.eShopOnContainers.Services.Locations.API.Infrastructure.Services;
using Microsoft.eShopOnContainers.Services.Marketing.API.Infrastructure.Services;
namespace Microsoft.eShopOnContainers.Services.Marketing.API.Controllers
{


+ 1
- 1
src/Services/Marketing/Marketing.API/Infrastructure/Services/IIdentityService.cs View File

@ -1,4 +1,4 @@
namespace Microsoft.eShopOnContainers.Services.Locations.API.Infrastructure.Services
namespace Microsoft.eShopOnContainers.Services.Marketing.API.Infrastructure.Services
{
public interface IIdentityService
{


+ 1
- 1
src/Services/Marketing/Marketing.API/Infrastructure/Services/IdentityService.cs View File

@ -1,4 +1,4 @@
namespace Microsoft.eShopOnContainers.Services.Locations.API.Infrastructure.Services
namespace Microsoft.eShopOnContainers.Services.Marketing.API.Infrastructure.Services
{
using AspNetCore.Http;
using System;


+ 1
- 1
src/Services/Marketing/Marketing.API/Startup.cs View File

@ -16,7 +16,7 @@
using Infrastructure;
using Infrastructure.Filters;
using Infrastructure.Repositories;
using Locations.API.Infrastructure.Services;
using Infrastructure.Services;
using Extensions.Configuration;
using Extensions.DependencyInjection;
using Extensions.Logging;


Loading…
Cancel
Save