zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/Infrastructure/IIntegrationEventService.cs
2023-12-05 17:22:48 +08:00

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);
}
}