public async Task Execute(Reservation reservation) { if (EventIsFromLevyAccount(reservation)) { _logger.LogInformation($"Reservation [{reservation.Id}] is from levy account, no further processing."); return; } await _reservationService.AddReservationToReservationsIndex(reservation); }