コード例 #1
0
        // GET: ProductsController
        public async Task <ActionResult> Index()
        {
            var products = await shopDbService.GetAllAsync();

            return(View(products));
        }
コード例 #2
0
        // GET: CustomersController
        public async Task <ActionResult> Index()
        {
            var customer = await shopDbService.GetAllAsync();

            return(View(customer));
        }