public async Task Handle(LevantamentoConcludedDomainEvent notification, CancellationToken cancellationToken)
 {
     var eventConcludedIntegrationEvent = new LevantamentoConcludedIntegrationEvent(notification.Id, notification.Name, notification.Description, notification.Start, notification.End);
     await _levantamentoIntegrationEventService.AddAndSaveEventAsync(eventConcludedIntegrationEvent);
 }