Ejemplo n.º 1
0
 public bool IfLastName()
 {
     if (!HaveOneNumChar.CheckTherIsNum(LastName))
     {
         for (int i = 0; i < LastName.Length; i++)
         {
             if (LastName.Length > 2)
             {
                 return(Successt = true);
             }
         }
     }
     return(Successt = false);
 }
Ejemplo n.º 2
0
        public bool IfPass()
        {
            if (HaveOneNumChar.CheckTherIsNum(Password))
            {
                for (int i = 0; i < Password.Length; i++)
                {
                    if (Password.Length >= 6)
                    {
                        return(Successt = true);
                    }
                }
            }

            return(Successt = false);
        }