Ejemplo n.º 1
0
        public void getInfo()
        {
            Console.Write("Enter the hospital Name: ");
            i.setHospital_Name(Console.ReadLine());
            Console.Write("Enter the hospital Address: ");
            i.setAddress(Console.ReadLine());
            Console.Write("Enter the hospital Type(Private or Public): ");
            i.setType(Console.ReadLine());
            Console.Write("Enter the hospital Province: ");
            i.setProvince(Console.ReadLine());
            Console.Clear();

            Console.WriteLine("Enter the number of patients: ");
            i.setArray(Convert.ToInt32(Console.ReadLine()));

            for (int x = 0; x < i.size(); x++)
            {
                Console.Clear();
                Console.Write("Patient: " + (x + 1) + "\n Enter Patient ID: ");
                iD = Console.ReadLine();

                Console.Write("Enter Patient Medical Aid: ");
                medicalAid = Console.ReadLine();

                Console.Write("Enter Patient Name: ");
                name = Console.ReadLine();

                Console.Write("Enter Patient Surname: ");
                surname = Console.ReadLine();

                Console.Write("Enter Refering Doctor: ");
                refDr = Console.ReadLine();

                Console.Write("Enter Patient Blood Type: ");
                bloodType = Convert.ToChar(Console.ReadLine());

                Console.Write("Enter Patient Allergies: ");
                allergies = Console.ReadLine();

                Console.Write("Patient had covid True/False: ");
                hadcovid = Convert.ToBoolean(Console.ReadLine());

                Console.Write("Enter Vaccine: ");
                vac = Console.ReadLine();

                i.addPerson(iD, medicalAid, name, surname, refDr, bloodType, allergies, hadcovid, vac);
            }
        }
Ejemplo n.º 2
0
        public void getPatientInfo()
        {
            Console.WriteLine("Enter the number of patients: ");
            i.setArray(Convert.ToInt32(Console.ReadLine()));

            for (int x = 0; x < i.size(); x++)
            {
                Console.Clear();
                Console.Write("Patient: " + (x + 1) + " Enter Patient ID: ");
                iD = Console.ReadLine();

                Console.Write("Patient: " + (x + 1) + " Enter Patient Medical Aid: ");
                medicalAid = Console.ReadLine();

                Console.Write("Patient: " + (x + 1) + " Enter Patient Name: ");
                name = Console.ReadLine();

                Console.Write("Patient: " + (x + 1) + " Enter Patient Surname: ");
                surname = Console.ReadLine();

                Console.Write("Patient: " + (x + 1) + " Enter Refering Doctor: ");
                refDr = Console.ReadLine();

                Console.Write("Patient: " + (x + 1) + " Enter Patient Blood Type: ");
                bloodType = Convert.ToChar(Console.ReadLine());

                Console.Write("Patient: " + (x + 1) + " Enter Patient Allergies: ");
                allergies = Console.ReadLine();

                Console.Write("Patient: " + (x + 1) + " Enter if Patient had covid: ");
                hadcovid = Convert.ToBoolean(Console.ReadLine());

                Console.Write("Patient: " + (x + 1) + " Enter Patient Vaccine: ");
                vac = Console.ReadLine();

                i.addPerson(iD, medicalAid, name, surname, refDr, bloodType, allergies, hadcovid, vac);
            }
        }