17 lines
393 B
C#
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);
|
|
}
|
|
}
|