Opdracht Book Serialization
Home

Opdracht Book Serialization

Opdracht Book Serialization

Om de serialiseringstechnieken in te oefenen gaan we dezelfde methodes, die we gemaakt hebben voor Postcode, nu maken voor Book.

Opdracht

  1. Sla de XML hieronder op in een bestand met de naam Book.xml in de Data map.
  2. Maak een klassenbestand met de naam Book.cs, met daarin de klasse Book in de namespace DotNetCore.Learning. Baseer je op de structuur van het XML bestand om een Book object te maken met de overeenkomstige properties.
  3. Maak een klassenbestand met de naam BookSerializing.cs met daarin de klasse BookSerializing in de namespace DotNetCore.Learning.
  4. In deze klasse maak je de volgende methoden:
    1. Vermits de opgegeven dataset in XML is beginnen we met een methode die het XML bestand deserialiseert naar een generieke lijst van boeken List<Book>. De naam van deze methode is DeserializeFromXml.
    2. Maak een methode met de naam SerializeListToCsv die een generieke lijst met boeken serialiseert naar een CSV bestand.
    3. Maak een methode met de naam DeserializeCsvToList die een csv bestand omzet naar een lijst van het type List<Book>.
    4. Maak een methode met de naam SerializeListToJson die een generieke lijst met boeken serialiseert naar een json bestand.
    5. Maak een methode met de naam DeserializeJsonToList die een json bestand omzet naar een lijst van het type List<Book>.
    6. Schrijf een methode die de boeken in de generieke lijst toont in de console met de naam ShowBooks.
  5. Probeer elk van deze methoden uit in de main methode van de Program klasse in Program.cs.

De Book XML

<?xml version="1.0" encoding="UTF-16"?>
<Catalog>
  <Book>
    <TitleOfBook>La métaphisique, tome I &amp; 2</TitleOfBook>
    <Publisher>VRIN</Publisher>
    <PublishingYear>1981</PublishingYear>
    <Comment>vertaald door J. Tricot</Comment>
  </Book>
  <Book>
    <TitleOfBook>Ethica, vertaald door Christine Pannier en Jean Verhaeghe</TitleOfBook>
    <Publisher>Historische Uitgeverij</Publisher>
    <PublishingYear>1999</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>De joden, de wereld en het geld. Economische geschiedenis van het joodse volk</TitleOfBook>
    <Publisher>Averbode/Ten Have</Publisher>
    <PublishingYear>2003</PublishingYear>
    <Comment>Oorspronkelijke titel: Les Juifs, le monde et l’argent. Histoire économique du peuple juif. Librairie Arthème Fayard, 2002</Comment>
  </Book>
  <Book>
    <TitleOfBook>De stad van God</TitleOfBook>
    <Publisher>Uitgeverij Baarn</Publisher>
    <PublishingYear>1992</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Logicaboek</TitleOfBook>
    <Publisher>Garant</Publisher>
    <PublishingYear>1999</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Dictionnaire de l’etnologie et de l’anthropologie</TitleOfBook>
    <Publisher>PUF</Publisher>
    <PublishingYear>1991</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>The sibling society</TitleOfBook>
    <Publisher>Persus</Publisher>
    <PublishingYear>1996</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>De middellandse zee. Het landschap en de mens</TitleOfBook>
    <Publisher>Uitgeverij Contanct</Publisher>
    <PublishingYear>1992</PublishingYear>
    <Comment>Uit het Frans vertaald: La méditerranée; La part du milieu, Parijs: Librairie Armand Colin, 1966</Comment>
  </Book>
  <Book>
    <TitleOfBook>Gender Trouble</TitleOfBook>
    <Publisher>Routledge</Publisher>
    <PublishingYear>1990</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Gender turbulentie</TitleOfBook>
    <Publisher>Boom/Parrèsia</Publisher>
    <PublishingYear>2000</PublishingYear>
    <Comment>vertaald door Ineke van der Burg en Niels Helsloot</Comment>
  </Book>
  <Book>
    <TitleOfBook>Richelieu</TitleOfBook>
    <Publisher>Fayard</Publisher>
    <PublishingYear>1983</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Ten Geleide in Eric Toussaint, Je geld of je leven</TitleOfBook>
    <Publisher>VUBPRESS</Publisher>
    <PublishingYear>1998</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Wat is filosofie?</TitleOfBook>
    <Publisher>Damon</Publisher>
    <PublishingYear>2003</PublishingYear>
    <Comment>oorspronkelijke titel: Logica, come scienza del concetto puro. Napels: Bibliopolis, 1947, vertaald door Martine Lejeune</Comment>
  </Book>
  <Book>
    <TitleOfBook>The Selfish Gene</TitleOfBook>
    <Publisher>Oxford University Press</Publisher>
    <PublishingYear>1976</PublishingYear>
    <Comment>Nederlandse vertaling: De zelfzuchtige genen. Amsterdam: Contact.</Comment>
  </Book>
  <Book>
    <TitleOfBook>De architectuur van de welvaartstaat opnieuw bekeken</TitleOfBook>
    <Publisher>acco</Publisher>
    <PublishingYear>2001</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>De autobiografie van Charles Darwin</TitleOfBook>
    <Publisher>Uitgeverij Nieuwezijds</Publisher>
    <PublishingYear>2001</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Sire, het volk mort</TitleOfBook>
    <Publisher>Amsab</Publisher>
    <PublishingYear>1997</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Het katoenoproer van Gent in 1839</TitleOfBook>
    <Publisher>SUN</Publisher>
    <PublishingYear>1998</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Geuzengeweld</TitleOfBook>
    <Publisher>VUBPRESS</Publisher>
    <PublishingYear>1998</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>De philosophie der Vóórsocratici</TitleOfBook>
    <Publisher>Standaard-Boekhandel, Philosophische Bibliotheek</Publisher>
    <PublishingYear>1953</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Hegel Secret</TitleOfBook>
    <Publisher>PUF</Publisher>
    <PublishingYear>1986</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Machten en mensen</TitleOfBook>
    <Publisher>Jan Dhondt Stichting</Publisher>
    <PublishingYear>1976</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>De oorspong van het gezin, van de particuliere eigendom en van de staat</TitleOfBook>
    <Publisher>Uitgeverij Progress</Publisher>
    <PublishingYear>1974</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Aarde, Lucht, water en vuur, vertaald door Rein Ferwerda</TitleOfBook>
    <Publisher>Atheneum – Polak &amp; Van Gennep</Publisher>
    <PublishingYear>1997</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>De wil tot weten</TitleOfBook>
    <Publisher>SUN</Publisher>
    <PublishingYear>1984</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>“De vrouwelijkheid”, Colleges inleiding tot de psychoanalyse Nieuwe reeks</TitleOfBook>
    <Publisher>Boom</Publisher>
    <PublishingYear>1990</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>The Emergency of Probability</TitleOfBook>
    <Publisher>Cambride University Press</Publisher>
    <PublishingYear>1975</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>One hundred years of homosexuality</TitleOfBook>
    <Publisher>Routledge</Publisher>
    <PublishingYear>1990</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>The fatal conceit. The Errors of Socialism</TitleOfBook>
    <Publisher>Routledge</Publisher>
    <PublishingYear>1988</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Philosophie des Geistes, 1805/06, Gesammelte Werke Band 8, Jenaer Systementwürfe III</TitleOfBook>
    <Publisher>Felix Meiner Verlag</Publisher>
    <PublishingYear>1976</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Die Phänomenologie des Geistes, 1807, Gesammelte Werke Band 9</TitleOfBook>
    <Publisher>Felix Meiner Verlag</Publisher>
    <PublishingYear>1980</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Wissenschaft der Logik, Erster Band, Die objective Logic, 1832, Gesammelte Werke Band 21</TitleOfBook>
    <Publisher>Felix Meiner Verlag</Publisher>
    <PublishingYear>1984</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Grundlinien der Philosophie des Rechts</TitleOfBook>
    <Publisher>Berlijn 1821, Felix Meiner Verlag</Publisher>
    <PublishingYear>1999</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Inleiding in de metafysica</TitleOfBook>
    <Publisher>SUN</Publisher>
    <PublishingYear>1997</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Een monnik en twee erwten</TitleOfBook>
    <Publisher>Ambo</Publisher>
    <PublishingYear>2001</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>‘Selection of selfish and altruistic behaviour.’ In: J.F. Eisenberg en W. S. Dillon, red., Man and Beast: Comparitive Social Behaviour, p. 59-91. Washington, D. C</TitleOfBook>
    <Publisher>Smithsonian Institution Press</Publisher>
    <PublishingYear></PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Het verslag van mijn onderzoek</TitleOfBook>
    <Publisher>SUN</Publisher>
    <PublishingYear>1995</PublishingYear>
    <Comment>vertaald door Hein L. van Dolen</Comment>
  </Book>
  <Book>
    <TitleOfBook>Ancient history from coins</TitleOfBook>
    <Publisher>Routledge</Publisher>
    <PublishingYear>1995</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Elementaire deeltjes</TitleOfBook>
    <Publisher>Uitgeverij De Arbeiderspers</Publisher>
    <PublishingYear>1999</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>A Treatise of Human Nature</TitleOfBook>
    <Publisher>Oxford University Press</Publisher>
    <PublishingYear>1978</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>An enquiry concerning the principles of morals</TitleOfBook>
    <Publisher>Clarendon Press</Publisher>
    <PublishingYear>1998</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Evolution and Ethics</TitleOfBook>
    <Publisher>Princeton University Press</Publisher>
    <PublishingYear>1989</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>The structure of scientific revolutions</TitleOfBook>
    <Publisher>University of Chicago Press, 3de uitgave</Publisher>
    <PublishingYear>1996</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Ce sexe qui n’en est pas un</TitleOfBook>
    <Publisher>Editions de Minuit</Publisher>
    <PublishingYear>1977</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>“Le sujet de la science est-il sexué?” in Parler n’est jamais neuter</TitleOfBook>
    <Publisher>Editions de Minuit</Publisher>
    <PublishingYear>1985</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Sexes et parentés</TitleOfBook>
    <Publisher>Editions de Minuit</Publisher>
    <PublishingYear>1987</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Sens et place des connaissances dans la société</TitleOfBook>
    <Publisher>CRNS</Publisher>
    <PublishingYear>1987</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Histoire du pain depuis 6000 ans</TitleOfBook>
    <Publisher>Éditions du Seuil</Publisher>
    <PublishingYear>1958</PublishingYear>
    <Comment>Uit het Duits vertaald, Sechstausend jahre brot, Hamburg: Rowolt Verlag, 1954</Comment>
  </Book>
  <Book>
    <TitleOfBook>De geschiedenis van het denken</TitleOfBook>
    <Publisher>Uitgeverij Bert Bakker</Publisher>
    <PublishingYear>2003</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Coins, bodies, games, and gold</TitleOfBook>
    <Publisher>Princeton University Press</Publisher>
    <PublishingYear>1999</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Nous n’avons jamais été modernes</TitleOfBook>
    <Publisher>La Découverte/Poche</Publisher>
    <PublishingYear>1997</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Cultuur van middeleeuws Europa</TitleOfBook>
    <Publisher>Rainbow Paperbacks</Publisher>
    <PublishingYear>2003</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>L’Europe est-elle née au moyen âge?</TitleOfBook>
    <Publisher>Seuil</Publisher>
    <PublishingYear>2003</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Les structures élémentaires de la parenté</TitleOfBook>
    <Publisher>Mouton 1ste uitgave</Publisher>
    <PublishingYear>1947</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Anthropologie structurale</TitleOfBook>
    <Publisher>Plon</Publisher>
    <PublishingYear>1958</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>La pensée sauvage</TitleOfBook>
    <Publisher>Het wilde denken, Meulenhoff</Publisher>
    <PublishingYear>1968</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Het gezin</TitleOfBook>
    <Publisher>SUN</Publisher>
    <PublishingYear>1983</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>La famille in Le regard éloigné</TitleOfBook>
    <Publisher>Plon</Publisher>
    <PublishingYear>1983</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Paroles données</TitleOfBook>
    <Publisher>Plon</Publisher>
    <PublishingYear>1985</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>De près en de loin</TitleOfBook>
    <Publisher>Éditions Odile Jacob</Publisher>
    <PublishingYear>1988</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Politieke geschiedenis van België</TitleOfBook>
    <Publisher>Kluwer</Publisher>
    <PublishingYear>1985</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>De Terminologie van het Crediet-Wezen in het Grieksch</TitleOfBook>
    <Publisher>Arno Press</Publisher>
    <PublishingYear>1979</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>The Fabel of the Bee: or, Private vices, Public Benefits, vol. I</TitleOfBook>
    <Publisher>Oxford University Press</Publisher>
    <PublishingYear>1966</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>La philosophie morale</TitleOfBook>
    <Publisher>Gallimard</Publisher>
    <PublishingYear>1960</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Histoire de l’éducation dans l’Antiquité</TitleOfBook>
    <Publisher>Éditions du Seuil</Publisher>
    <PublishingYear>1948</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>L’ambivalence du temps de l’histoire chez Saint Augustin. Paris: Librairie J</TitleOfBook>
    <Publisher>Vrin</Publisher>
    <PublishingYear>1950</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Essays, vertaling door Frank De Graaf</TitleOfBook>
    <Publisher>Boom</Publisher>
    <PublishingYear>1993</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>De vrolijke wetenschap</TitleOfBook>
    <Publisher>Uitgeverij de Arbeiderspers</Publisher>
    <PublishingYear>1999</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Voorbij goed en kwaad</TitleOfBook>
    <Publisher>Uitgeverij de Arbeiderspers</Publisher>
    <PublishingYear>1999</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Menselijk, al te menselijk</TitleOfBook>
    <Publisher>Uitgeverij de Arbeiderspers</Publisher>
    <PublishingYear>2000</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Ecce homo</TitleOfBook>
    <Publisher>Uitgeverij de Arbeiderspers</Publisher>
    <PublishingYear>2000</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Albert-Edouard Janssen</TitleOfBook>
    <Publisher>Oyez</Publisher>
    <PublishingYear>1976</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Symposion</TitleOfBook>
    <Publisher>Uitgeverij Bert Bakker</Publisher>
    <PublishingYear>1997</PublishingYear>
    <Comment>voor de Griekse tekst heb ik de tweetalige uitgave in de Budé reeks gebruikt</Comment>
  </Book>
  <Book>
    <TitleOfBook>Le Banquet</TitleOfBook>
    <Publisher>Société d’édition “Les Belles Lettres”</Publisher>
    <PublishingYear>1951</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Faidros</TitleOfBook>
    <Publisher>Uitgeverij Bert Bakker</Publisher>
    <PublishingYear>1998</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>La grande transformation</TitleOfBook>
    <Publisher>Gallimard</Publisher>
    <PublishingYear>1983</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Voorbij de onschuld</TitleOfBook>
    <Publisher>Van Gennep</Publisher>
    <PublishingYear>2000</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Onze laatste eeuw. Overleeft de mens de 21ste eeuw?</TitleOfBook>
    <Publisher>Het Spectrum</Publisher>
    <PublishingYear>2003</PublishingYear>
    <Comment>Oorspronkelijke titel: Our final century?, Heinemann, 2003.</Comment>
  </Book>
  <Book>
    <TitleOfBook>‘Notice’, Platon Oeuvres Complètes Tome IV, 2ième partie, Le Banquet</TitleOfBook>
    <Publisher>Société d’Édition “Les Belles Lettres”</Publisher>
    <PublishingYear>1951</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Du contrat social ou Principes du droit politique</TitleOfBook>
    <Publisher>Boom</Publisher>
    <PublishingYear>1997</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>L’idiot de la famille, Tome 3</TitleOfBook>
    <Publisher>Gaillimard</Publisher>
    <PublishingYear>1972</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Shylock revu et corrigé. Les juifs, les chrétiens et le prêt d’argent dans la société médiévale</TitleOfBook>
    <Publisher>Les Belles Lettres</Publisher>
    <PublishingYear>2000</PublishingYear>
    <Comment>Oorspronkelijke titel: Shylock reconsidered:Jews, Moneylending, and Medieval Society, The Regents of the University of California, 1990</Comment>
  </Book>
  <Book>
    <TitleOfBook>Fin de Siècle, Vienna</TitleOfBook>
    <Publisher>Cambridge University Press</Publisher>
    <PublishingYear>1985</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>An Inquiry into the Nature and Causes of the Wealth of Nations</TitleOfBook>
    <Publisher>Liberty Fund</Publisher>
    <PublishingYear>1981</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>De Euro</TitleOfBook>
    <Publisher>Mets en Schilt</Publisher>
    <PublishingYear>2001</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Je geld of je leven</TitleOfBook>
    <Publisher>VUBPRESS</Publisher>
    <PublishingYear>1998</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>De Peloponnesische oorlog</TitleOfBook>
    <Publisher>Athenaeum-Polak &amp; Van Gennep</Publisher>
    <PublishingYear>2001</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Het hof van barmhartigheid</TitleOfBook>
    <Publisher>Querido</Publisher>
    <PublishingYear>1996</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Onder het plaveisel het moeras</TitleOfBook>
    <Publisher>Querido</Publisher>
    <PublishingYear>1996</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Dat heeft u mij niet horen zeggen…</TitleOfBook>
    <Publisher>Uitgeverij Contact</Publisher>
    <PublishingYear>1992</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Inleiding tot de economie</TitleOfBook>
    <Publisher>Universitaire Pers Leuven</Publisher>
    <PublishingYear>1991</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Colbert. La politique du bon sens</TitleOfBook>
    <Publisher>Payot</Publisher>
    <PublishingYear>2003</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Liefde in tijden van eenzaamheid</TitleOfBook>
    <Publisher>Acco</Publisher>
    <PublishingYear>1998</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Zijn en staan</TitleOfBook>
    <Publisher>Damon</Publisher>
    <PublishingYear>1999</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Het menselijk liberalisme</TitleOfBook>
    <Publisher>Houtekiet</Publisher>
    <PublishingYear>2002</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Le siècle de Louis XIV, 1753, in Oeuvres historiques</TitleOfBook>
    <Publisher>Blibliothèque de la Pléiade</Publisher>
    <PublishingYear>1957</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Exchange in Ancient Greece</TitleOfBook>
    <Publisher>Duckworth</Publisher>
    <PublishingYear>2003</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Van nature goed: over de oorsprong van goed en kwaad in mensen en andere dieren</TitleOfBook>
    <Publisher>Contact</Publisher>
    <PublishingYear>1996</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>The protestant ethic and the spirit of capitalism</TitleOfBook>
    <Publisher>Blackwell</Publisher>
    <PublishingYear>2002</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Truth and Truthfulness</TitleOfBook>
    <Publisher>Princeton University Press</Publisher>
    <PublishingYear>2002</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>‘Reciprocal food sharing in the vampire bat</TitleOfBook>
    <Publisher>181-184</Publisher>
    <PublishingYear>1984</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>‘Food Sharing in Vampire Bats.’</TitleOfBook>
    <Publisher>Scientific American February, 64-70</Publisher>
    <PublishingYear>1990</PublishingYear>
    <Comment></Comment>
  </Book>
  <Book>
    <TitleOfBook>Politieke geschiedenis van België sinds 1830</TitleOfBook>
    <Publisher>Standaard Wetenschappelijke Uitgeverij</Publisher>
    <PublishingYear>1985</PublishingYear>
    <Comment></Comment>
  </Book>
</Catalog>

JI
2017-10-09 12:04:46