public void Execute(int tokenId, UpdateTokenRequest request)
        {
            var response = _tokensGateway.UpdateToken(tokenId, request.Enabled);

            if (response == null)
            {
                throw new TokenRecordNotFoundException();
            }
        }