Exemplo n.º 1
0
        public ActionResult AddPostComment(PostComment aPost)
        {
            aPost.PostDate = DateTime.UtcNow;

            _aPostCommentContainer.SavePost(aPost);
            return(RedirectToAction("AddPost"));
        }