Ejemplo n.º 1
0
        public static string Password(string message, IList <Func <object, ValidationResult> > validators = null)
        {
            using var form = new Password(message, validators);

            return(form.Start());
        }
Ejemplo n.º 2
0
        public static string Password(PasswordOptions options)
        {
            using var form = new Password(options);

            return(form.Start());
        }