Exemplo n.º 1
0
 public PostSummary(Post post, Documents.Blog blog, int index, int total)
 {
     this.post = post;
     this.blog = blog;
     this.index = index + 1; // not zero indexed from users perspective
     this.total = total;
 }
Exemplo n.º 2
0
 public PostBody(Post post, Documents.Blog blog)
 {
     this.post = post;
     this.blog = blog;
 }