Ejemplo n.º 1
0
        private bool IfUserIDExists()
        {
            DataTable dt;

            dt = dalUser.userIDSearch(userID);

            if (dt.Rows.Count > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }