コード例 #1
0
        public static List <TrainPerCourse> CreateListsTrainersPerCourse() // CREATE LIST, TRAINERS per COURSE______________________________________
        {
            List <Trainer> Trainers = ListProvider.CreateListsTrainers();
            List <Course>  Mathima  = ListProvider.CreateListCourses();

            TrainPerCourse TPC001 = new TrainPerCourse(Mathima, Trainers);

            List <TrainPerCourse> trainerspercourse = new List <TrainPerCourse>();

            trainerspercourse.Add(TPC001);

            return(trainerspercourse);
        }
コード例 #2
0
        public static List <StudPerCourse> CreateListsStudentsPerCourse() // CREATE LIST, STUDENTS per COURSE______________________________________
        {
            List <Student> Mathites = ListProvider.CreateListsStudents();
            List <Course>  Mathima  = ListProvider.CreateListCourses();

            StudPerCourse SPC001 = new StudPerCourse(Mathima, Mathites);

            List <StudPerCourse> studentspermathima = new List <StudPerCourse>();

            studentspermathima.Add(SPC001);

            return(studentspermathima);
        }
コード例 #3
0
        public static List <AssPerCourse> CreateListsAssPerCourse() // CREATE LIST, ASSIGNMENTS per COURSE______________________________________
        {
            List <Assignment> Assignments = ListProvider.CreateListAssignments();
            List <Course>     Mathima     = ListProvider.CreateListCourses();

            AssPerCourse APC001 = new AssPerCourse(Mathima, Assignments);

            List <AssPerCourse> asignemntspermathima = new List <AssPerCourse>();

            asignemntspermathima.Add(APC001);

            return(asignemntspermathima);
        }
コード例 #4
0
        public static void PrintListCourses()
        {
            // Output COURSE List________________________________________________________________________
            List <Course> listcourse = new List <Course>();

            listcourse = ListProvider.CreateListCourses();

            Console.ForegroundColor = ConsoleColor.Red;
            Console.WriteLine("-----------------------------------------------------------------------------------------");
            Console.WriteLine($" {"TITLE",-15} | {"STREAM",-15} | {"TYPE",-10} | {"START DATE",-12} | {"END DATE"}");
            Console.WriteLine("-----------------------------------------------------------------------------------------");
            Console.ForegroundColor = ConsoleColor.White;
            foreach (var item in listcourse)
            {
                item.Output();
            }
            //-------------------------------------------------------------------------------------------
        }
コード例 #5
0
        public static void UserInput()
        {
            string e         = "E";
            string i         = "I";
            string userInput = null;

            List <Course> courses = ListProvider.CreateListCourses();

            while (userInput != e)
            {
                Console.WriteLine("\nChoose Action: \n(I) INPUT DATA, \n(E) BACK ");
                userInput = Console.ReadLine();
                if (userInput == i)
                {
                    string   tempTitle  = "Unspecified";
                    string   tempStream = "Unspecified";
                    string   tempType   = "Unspecified";
                    DateTime tempSDate  = new DateTime(2019, 1, 1);
                    DateTime tempEDate  = new DateTime(2019, 3, 31);


                    // Input Set Up__________________________________________________
                    Console.ForegroundColor = ConsoleColor.Green;
                    Console.WriteLine("Please Input Course Data");
                    Console.ForegroundColor = ConsoleColor.White;

                    // Input NAME_____________________________________________________
                    string tempTitle0;
                    Console.Write("Title:            ");
                    tempTitle0 = Console.ReadLine();
                    if (tempTitle0 == null)
                    {
                        tempTitle = "Unspecified";
                    }
                    tempTitle = tempTitle0;

                    // Input SURNAME__________________________________________________
                    string tempStream0;
                    Console.Write("Stream:         ");
                    tempStream0 = Console.ReadLine();
                    if (tempStream0 == null)
                    {
                        tempStream = "Unspecified";
                    }
                    tempStream = tempStream0;

                    // Input SUBJECT__________________________________________________
                    string tempType0;
                    Console.Write("Type:         ");
                    tempType0 = Console.ReadLine();
                    if (tempType0 == null)
                    {
                        tempType = "Unspecified";
                    }
                    tempType = tempType0;

                    // Input START DATE_______________________________________________
                    try
                    {
                        Console.WriteLine("Starting Date (DD/MM/YYYY): ");
                        string   Check     = Console.ReadLine();
                        DateTime DateCheck = DateTime.ParseExact(Check, "dd/MM/yyyy", CultureInfo.InvariantCulture);
                        tempSDate = DateCheck;
                    }
                    catch (Exception)
                    {
                        Console.ForegroundColor = ConsoleColor.Red;
                        Console.WriteLine("Your Given Date has Bad Format, Please input: (DD/MM/YYYY)");
                        Console.ForegroundColor = ConsoleColor.White;
                    }

                    // Input END DATE_______________________________________________
                    try
                    {
                        Console.WriteLine("End Date (DD/MM/YYYY): ");
                        string   Check     = Console.ReadLine();
                        DateTime DateCheck = DateTime.ParseExact(Check, "dd/MM/yyyy", CultureInfo.InvariantCulture);
                        tempEDate = DateCheck;
                    }
                    catch (Exception)
                    {
                        Console.ForegroundColor = ConsoleColor.Red;
                        Console.WriteLine("Your Given Date has Bad Format, Please input: (DD/MM/YYYY)");
                        Console.ForegroundColor = ConsoleColor.White;
                    }

                    Course temp = new Course(tempTitle, tempStream, tempType, tempSDate, tempEDate);
                    courses.Add(temp);

                    foreach (var item in courses)
                    {
                        item.Output();
                    }
                }
                else if (userInput == e)                                    // Step Back Command
                {
                    Console.ForegroundColor = ConsoleColor.Red;
                    Console.WriteLine("BACK");
                    Console.ForegroundColor = ConsoleColor.White;
                }
                else                                                        // In the Case of false Data Input
                {
                    Console.ForegroundColor = ConsoleColor.DarkRed;
                    Console.WriteLine("Unindentified Input, Please Choose Again");
                    Console.ForegroundColor = ConsoleColor.White;
                }
            }
        }