Ejemplo n.º 1
0
 static public string GeneratePassword(int length = 8, bool capitalize = true)
 {
     return(CoderService.GenerateCode(length, capitalize: capitalize));
 }
Ejemplo n.º 2
0
 static public string GenerateCode(int length = 6, int baseLength = CoderService.MaxBaseLength, bool capitalize = false)
 {
     return(CoderService.GenerateCode(length, baseLength, capitalize));
 }
Ejemplo n.º 3
0
 static public string GeneratePin(int length = 6)
 {
     return(CoderService.GenerateCode(length, baseLength: 10, capitalize: false));
 }