eShopOnContainers/src/BuildingBlocks/EventBus/CommandBus/IIntegrationCommandHandler.cs
Eduard Tomas 8dba1d66ac WIP
2017-05-02 19:43:54 +02:00

17 lines
393 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Microsoft.eShopOnContainers.BuildingBlocks.CommandBus
{
public interface IIntegrationCommandHandler
{
void Handle(IntegrationCommand command);
}
public interface IIntegrationCommandHandler<T> : IIntegrationCommandHandler
{
void Handle(IntegrationCommand<T> command);
}
}