Exemple #1
0
        public ActionResult EditComment(int?id, int?commentId)
        {
            var model   = new CreateEditCommentViewModel();
            var comment = bugTrackerHelper.GetCommentById(commentId.Value);

            model = Mapper.Map <CreateEditCommentViewModel>(comment);

            return(View(model));
        }