コード例 #1
0
 public void OnGet()
 {
     Input = new ViewCoursesInputMdl {
         Username = User.Identity.Name
     };
     Input.LoadCourseInfo(_dbContext);
 }
コード例 #2
0
        public IActionResult ViewCourses()
        {
            var model = new ViewCoursesInputMdl {
                Username = User.Identity.Name
            };

            model.LoadCourseInfo(_dbContext);
            return(View(model));
        }