public PropertyObfuscatorBuilder WithKeepStartCount(string key, int count)
 {
     Obfuscators.Add(key, ValueObfuscator.KeepingStartCount(count));
     return(this);
 }
 public PropertyObfuscatorBuilder WithKeepEndCount(string property, int count)
 {
     Obfuscators.Add(property, ValueObfuscator.KeepingEndCount(count));
     return(this);
 }
 public PropertyObfuscatorBuilder WithFixedLength(string property, int fixedLength)
 {
     Obfuscators.Add(property, ValueObfuscator.FixedLength(fixedLength));
     return(this);
 }