コード例 #1
0
ファイル: StudentBO.cs プロジェクト: hieu292/a4piggyproject
 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);
            }
        }