Exemplo n.º 1
0
 public PasswordGenerator(PasswordGeneratorOptions options)
 {
     _options     = options;
     _rangePicker = new RangePicker();
 }
Exemplo n.º 2
0
 public int GetPasswordLength(PasswordGeneratorOptions options)
 {
     return(GetRandomNumberInRange(options.MinimumLength, options.MaximumLength + 1));
 }