Ejemplo n.º 1
0
 // constructor om nieuwe post aan te maken
 public Post(string text, string path)
 {
     this.ID   = mediaRepo.CountPosts() + 1;
     this.Text = text;
     this.Path = path;
 }