예제 #1
0
 public bool isAuthencation(StudentDTO user)
 {
     StudentDAO ud = new StudentDAO();
     if (ud.CheckPassword(user) == true)
         return true;
     else
         return false;
 }
예제 #2
0
        public bool isAuthencation(StudentDTO user)
        {
            StudentDAO ud = new StudentDAO();

            if (ud.CheckPassword(user) == true)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }