コード例 #1
0
ファイル: CVController.cs プロジェクト: kevo1701/ASP
        public ActionResult List()
        {
            IEnumerable <CVModel> dtos = _service.GetAll().Select(element => Convert(element));

            return(View(dtos));
        }