public async Task Handle(StoreChainCreateCommand message, CancellationToken cancellationToken)
        {
            var e = new StoreChain(message.Id, message.Name);

            storeChain.Add(e);
        }