public async Task HandleAsync(AuctionItemRemovedEvent @event)
        {
            var item = await _readStore.GetAuctionItemAsync(@event.AggregateId, @event.Name);

            _readStore.Remove(item);
            await _readStore.SaveAsync();
        }