コード例 #1
0
 public Task PublishThroughEventBusAsync(MovedInIntegrationEvent orderStatusChangedToCancelledIntegrationEvent)
 {
     throw new System.NotImplementedException();
 }
コード例 #2
0
        public Task Handle(MovedInDomainEvent notification, CancellationToken cancellationToken)
        {
            var orderStatusChangedToCancelledIntegrationEvent = new MovedInIntegrationEvent(notification.FlatNo);

            return(_flatIntegrationEventService.PublishThroughEventBusAsync(orderStatusChangedToCancelledIntegrationEvent));
        }