Exemplo n.º 1
0
        public BlogPostFeedItem(Post post, int order)
        {
            if (post == null)
                throw new ArgumentNullException("post");

            this.post = post;
            Order = order;
        }
Exemplo n.º 2
0
 private ActionResult Item(Post post)
 {
     return View("Post", post);
 }
Exemplo n.º 3
0
 public void SavePost(Post post)
 {
     Repository.SaveOrUpdate(post);
 }