public DbRetryPolicy(IDbRetryStrategy strategy)
        {
            if (strategy == null)
            {
                throw new ArgumentNullException(nameof(strategy));
            }

            Strategy = strategy;
        }
 public DbAzureRetryPolicy(IDbRetryStrategy strategy)
     : base(strategy)
 {
 }