public void AddParticipantToInBuildingWorkshop()
        {
            var    workshop = new InBuildingWorkshop("test", "testDescription", 10, "Whateverstraat, 42", 21);
            Person person   = new Student("Cristian", "Tirotta", 449204);

            workshop.AddParticipant(person);

            CollectionAssert.Contains(workshop.GetParticipants(), person);
        }