예제 #1
0
        public ActionResult Index(int?orgId)
        {
            var comments = _commentService.All().Data;
            var models   = Mapper.Map <IEnumerable <CommentMvcViewModel> >(comments);

            return(View(models));
        }