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