Exemplo n.º 1
0
        public async Task <IActionResult> Index()
        {
            var boVMCollection = await _boVMService.GetboVMCollectionAsyn();

            ViewData["ModuleName"]   = "课程管理";
            ViewData["FunctionName"] = "课程清单";

            return(View(boVMCollection));
        }
        public async Task <IViewComponentResult> InvokeAsync()
        {
            var boVMCollection = await _boVMService.GetboVMCollectionAsyn();

            return(View("Default", boVMCollection));
        }