public Task <CreateLogResponse> Handle(CreateLogCommand request, CancellationToken cancellationToken)
        {
            var logSendedIntegrationEvent = new LogSendedIntegrationEvent(request.LevantamentoId, request.Long, request.Lat, request.Rate, request.Speed, request.DateOccurred);

            _eventBus.PublishEventAsync(logSendedIntegrationEvent);


            return(Task.FromResult(new CreateLogResponse
            {
                LevantamentoId = logSendedIntegrationEvent.LevantamentoId,
                Long = logSendedIntegrationEvent.Long,
                Lat = logSendedIntegrationEvent.Lat,
                Rate = logSendedIntegrationEvent.Rate,
                Speed = logSendedIntegrationEvent.Speed,
                DateOccurred = logSendedIntegrationEvent.DateOccurred
            }));
        }