public Thread(int postId, string titel, string omschrijving, DateTime date, bool open, Account account) : base(postId, titel, omschrijving, date) { this.open = open; webAccount = account; }
public Artikel(int postId, string titel, string omschrijving, DateTime date, Account door, string tags) : base(postId, titel, omschrijving, date) { Door = door; Tags = tags; }