public Post EditPost(Post post) { post.ChangeState = ChangeStates.Modified; post.DateModified = DateTime.Now; _postRepository.Edit(post); Save(); return post; }
public ActionResult CreatePost(Post post) { return View(); }
public Post CreatePost(Post post) { throw new NotImplementedException(); }