Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Welcome!");

            while (true)
            {
                int maxAttempts = 0;
                Console.ForegroundColor = ConsoleColor.Blue;
                Console.WriteLine("Quiz App");
                Console.ResetColor();
                Console.WriteLine("1.Student\n2.Teacher");
                int login = _helperService.ValidatePositiveNumber(Console.ReadLine(), 2);
                if (login == 1)
                {
                    Console.Clear();
StudentStart:
                    Console.WriteLine("Enter Username");
                    string username = Console.ReadLine();
                    Console.WriteLine("Enter Password");
                    string password = Console.ReadLine();
                    loggedStudent = _studentServices.LogIn(username, password);
                    if (loggedStudent == null)
                    {
                        _helperService.ErrorMessage("Wrong username or password!");
                        maxAttempts++;
                        if (maxAttempts >= 3)
                        {
                            break;
                        }
                        Console.ReadLine();
                        Console.Clear();
                        goto StudentStart;
                    }
                    else if (loggedStudent.AnsweredQuestions == true)
                    {
                        Console.Clear();
                        Console.WriteLine("You did the test!");
                        goto StudentStart;
                    }
                    else
                    {
                        _studentServices.WelcomeStudent(username);
                        _questionsService.GetQuestions(loggedStudent);
                    }
                }
                else if (login == 2)
                {
                    Console.Clear();
TeacherStart:
                    Console.WriteLine("Enter Username");
                    string username = Console.ReadLine();
                    Console.WriteLine("Enter Password");
                    string password = Console.ReadLine();
                    loggedTeacher = _teacherServices.Login(username, password);
                    if (loggedTeacher == null)
                    {
                        _helperService.ErrorMessage("Wrong username or password!");
                        maxAttempts++;
                        if (maxAttempts >= 3)
                        {
                            break;
                        }
                        Console.ReadLine();
                        Console.Clear();
                        goto TeacherStart;
                    }
                    else
                    {
                        Console.Clear();
                        _teacherServices.WelcomeTeacher(username);
                        Console.WriteLine("Press 1 to show Students that did the quiz and have a grade");
                        int showStudents = Convert.ToInt32(Console.ReadLine());
                        if (showStudents == 1)
                        {
                            _studentServices.PrintStudents();
                            Console.WriteLine();
                        }
                    }
                }
                else
                {
                    continue;
                }
            }



            Console.ReadLine();
        }