Пример #1
0
 // constructor om nieuwe comment aan te maken
 public Comment(string text)
 {
     this.ID   = mediaRepo.CountComments() + 1;
     this.Text = text;
 }