Пример #1
0
        public static bool Authenticate(string email, string password)
        {
            bool status = false;

            status = DBStudentManager.AuthenticateStud(email, password);
            return(status);
        }
Пример #2
0
        public static bool RegisterStudent(Student stud)
        {
            bool status = false;

            bool result = DBStudentManager.RegisterStudent(stud);

            if (result == true)
            {
                status = true;
            }
            return(status);
        }