From 04819105d26d26b50f29ce39a6b5e86049d90ee3 Mon Sep 17 00:00:00 2001 From: domenkogler Date: Tue, 3 Jul 2018 01:04:22 +0200 Subject: [PATCH] implement ICommand<> interface --- .../Ordering.API/Application/Commands/CreateOrderCommand.cs | 2 +- .../Application/Commands/CreateOrderDraftCommand.cs | 2 +- .../Ordering.API/Application/Commands/ShipOrderCommand.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Services/Ordering/Ordering.API/Application/Commands/CreateOrderCommand.cs b/src/Services/Ordering/Ordering.API/Application/Commands/CreateOrderCommand.cs index de3a23bfa..c261b615e 100644 --- a/src/Services/Ordering/Ordering.API/Application/Commands/CreateOrderCommand.cs +++ b/src/Services/Ordering/Ordering.API/Application/Commands/CreateOrderCommand.cs @@ -18,7 +18,7 @@ namespace Microsoft.eShopOnContainers.Services.Ordering.API.Application.Commands // https://msdn.microsoft.com/en-us/library/bb383979.aspx [DataContract] - public class CreateOrderCommand : ICommand, IRequest + public class CreateOrderCommand : ICommand { [DataMember] diff --git a/src/Services/Ordering/Ordering.API/Application/Commands/CreateOrderDraftCommand.cs b/src/Services/Ordering/Ordering.API/Application/Commands/CreateOrderDraftCommand.cs index c276308aa..164456f9b 100644 --- a/src/Services/Ordering/Ordering.API/Application/Commands/CreateOrderDraftCommand.cs +++ b/src/Services/Ordering/Ordering.API/Application/Commands/CreateOrderDraftCommand.cs @@ -10,7 +10,7 @@ using static Microsoft.eShopOnContainers.Services.Ordering.API.Application.Comma namespace Microsoft.eShopOnContainers.Services.Ordering.API.Application.Commands { - public class CreateOrderDraftCommand : ICommand, IRequest + public class CreateOrderDraftCommand : ICommand { public Guid CommandId { get; } diff --git a/src/Services/Ordering/Ordering.API/Application/Commands/ShipOrderCommand.cs b/src/Services/Ordering/Ordering.API/Application/Commands/ShipOrderCommand.cs index e7aba489e..02b3558f6 100644 --- a/src/Services/Ordering/Ordering.API/Application/Commands/ShipOrderCommand.cs +++ b/src/Services/Ordering/Ordering.API/Application/Commands/ShipOrderCommand.cs @@ -8,7 +8,7 @@ using Microsoft.eShopOnContainers.Services.Ordering.API.Application.Commands; namespace Ordering.API.Application.Commands { - public class ShipOrderCommand : ICommand, IRequest + public class ShipOrderCommand : ICommand { public Guid CommandId { get; set; }