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