Example #1
0
        static void Main(string[] args)
        {
            Persoon p1 = new Persoon("Bolle", "Jeauninne", 'v');

            p1.LogOutput();
            Gebruiker g1 = new Gebruiker("Van Leemhuyzen", "Eugène", 'm');

            g1.LogOutput();
            Student s1 = new Student("Verhulst", "Gert", 'm');

            s1.LogOutput();
            Docent d1 = new Docent("Ongeweten", "Samson", 'u');

            d1.LogOutput();
        }
Example #2
0
        static void Main(string[] args)
        {
            Persoon persoon = new Persoon("Vanhoecke", "Lisa", 'V');

            persoon.LogOutput();

            Gebruiker gebruiker = new Gebruiker("Vermeer", "Lucas", 'M');

            gebruiker.LogOutput();

            Student student = new Student("Vertongen", "Jantje", 'M');

            student.LogOutput();

            Docent docent = new Docent("Vandamme", "Martin", 'O');

            docent.LogOutput();
        }