예제 #1
0
        public ActionResult Index()
        {
            var visitor = visitorRepository.GetVisitors().Select(x => new VisitorModel {
                ID = x.ID, vName = x.vName, Comment = x.Comment
            });

            return(View(visitor));
        }