zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/Infrastructure/IIntegrationEventService.cs

11 lines
292 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
using ZeroFramework.EventBus.Events;
namespace ZeroFramework.DeviceCenter.Application.Infrastructure
{
public interface IIntegrationEventService
{
Task PublishEventsThroughEventBusAsync(Guid transactionId);
Task AddAndSaveEventAsync(IntegrationEvent evt);
}
}