public async Task HandleAsync(AuctionUpdatedEvent @event)
        {
            var auction = await _readStore.GetAuctionAsync(@event.AggregateId);

            auction.Name        = @event.Name ?? auction.Name;
            auction.AuctionDate = @event.AuctionDate ?? auction.AuctionDate;

            await _readStore.SaveAsync();
        }