private async Task ExcecuteTransaction(ITransaction tran, string aggregateId)
        {
            var result = await _redisClient.ExecuteTransactionAsync(tran).ConfigureAwait(false);

            if (!result)
            {
                throw new Exception($"Redis transaction failed for AggregateId {aggregateId}");
            }
        }