public void Initialize()
        {
            //Initialize van de test data.
            //Aantal datums voor onderstaande testen waar nodig.
            testDatumBirth1 = new DateTime(2001, 1, 1);
            testDatumBirth2 = new DateTime();
            testGeplaatst = new DateTime(2016, 1, 16);

            //Niewe categorie
            c = new Categorie(1, "Airsoft", 1);

            //Niewe producten toevoegen.
            p = new Product("112342", c, "Geweer", "Ja", 10, 1, "mooi", "/Imageurl");
            p1 = new Product("112342", c, "Geweer", "Ja", 20, 1, "mooi", "/Imageurl");

            //Niewe klanten toevoegen.
            k = new Klant(1, "*****@*****.**", "TestWW", "Test", "Test", testDatumBirth1, "TestDatum", "BTW123456",
                "0613556430", true, true);
            k1 = new Klant(1, "*****@*****.**", "TestWW", "Test", "Test", testDatumBirth2, "TestDatum", "BTW123456",
                "0613556430", true, true);

            //Nieuwe medewerkers toevoegen.
            m = new Medewerker(1, "*****@*****.**", "TEST", "Mario", "Schipper", testDatumBirth1,
                "Klokuus", "", "0612366666", true);
            m1 = new Medewerker(2, "*****@*****.**", "TEST", "Mario", "Schipper", testDatumBirth1,
                "Klokuus", "", "0612366666", false);
        }
Exemple #2
0
 public Product(string id, Categorie categorie, string naam, string beschikbaarheid, decimal prijsStuk, int aantal, string beschrijving, string imgUrl)
 {
     ID = id;
     Categorie = categorie;
     Naam = naam;
     Beschikbaarheid = beschikbaarheid;
     PrijsStuk = prijsStuk;
     Aantal = aantal;
     Beschrijving = beschrijving;
     ImgUrl = imgUrl;
 }