public Task Handle(Domain.Events.DeliveryStatusChangedToCourierPickedUpDomainEvent notification,
                           CancellationToken cancellationToken)
        {
            _logger.LogInformation(
                "Delivery with Id: {DeliveryId} has been successfully updated status from {DeliveryStatusBeforeChange} to {Status} ({Id})",
                notification.DeliveryId, DeliveryStatus.From(notification.DeliveryStatusBeforeChange),
                nameof(DeliveryStatus.CourierPickedUp), DeliveryStatus.CourierPickedUp.Id);

            return(Task.CompletedTask);
        }