Browse Source

Remove warning on usings in Marketing.API

pull/309/head
Unai Zorrilla Castro 7 years ago
parent
commit
4a6fc5299a
2 changed files with 1 additions and 1 deletions
  1. +1
    -0
      src/Services/Marketing/Marketing.API/IntegrationEvents/Events/UserLocationUpdatedIntegrationEvent.cs
  2. +0
    -1
      src/Services/Marketing/Marketing.API/IntegrationEvents/Handlers/UserLocationUpdatedIntegrationEventHandler.cs

+ 1
- 0
src/Services/Marketing/Marketing.API/IntegrationEvents/Events/UserLocationUpdatedIntegrationEvent.cs View File

@ -7,6 +7,7 @@
public class UserLocationUpdatedIntegrationEvent : IntegrationEvent public class UserLocationUpdatedIntegrationEvent : IntegrationEvent
{ {
public string UserId { get; set; } public string UserId { get; set; }
public List<UserLocationDetails> LocationList { get; set; } public List<UserLocationDetails> LocationList { get; set; }
public UserLocationUpdatedIntegrationEvent(string userId, List<UserLocationDetails> locationList) public UserLocationUpdatedIntegrationEvent(string userId, List<UserLocationDetails> locationList)


+ 0
- 1
src/Services/Marketing/Marketing.API/IntegrationEvents/Handlers/UserLocationUpdatedIntegrationEventHandler.cs View File

@ -4,7 +4,6 @@
using Marketing.API.Model; using Marketing.API.Model;
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Abstractions; using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Abstractions;
using Microsoft.eShopOnContainers.Services.Marketing.API.Infrastructure.Repositories; using Microsoft.eShopOnContainers.Services.Marketing.API.Infrastructure.Repositories;
using Microsoft.eShopOnContainers.Services.Marketing.API.Model;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks; using System.Threading.Tasks;


Loading…
Cancel
Save