Exemple #1
0
        public ActionResult DeleteComment(int commentId)
        {
            SquawkComment          comment = _dataService.GetSquawkComment(commentId);
            SquawkCommentViewModel vm      = new SquawkCommentViewModel()
            {
                Id       = comment.Id,
                Text     = comment.Text,
                SquawkId = comment.SquawkId
            };

            return(View("DeleteSquawkComment", vm));
        }