11 lines
292 B
C#
11 lines
292 B
C#
|
using ZeroFramework.EventBus.Events;
|
|||
|
|
|||
|
namespace ZeroFramework.DeviceCenter.Application.Infrastructure
|
|||
|
{
|
|||
|
public interface IIntegrationEventService
|
|||
|
{
|
|||
|
Task PublishEventsThroughEventBusAsync(Guid transactionId);
|
|||
|
|
|||
|
Task AddAndSaveEventAsync(IntegrationEvent evt);
|
|||
|
}
|
|||
|
}
|