コード例 #1
0
ファイル: ShippersController.cs プロジェクト: ggntn/GitDew
        // GET: Shippers
        public async Task <IActionResult> Index()
        {
            try
            {
                var a = repo.GetListDATA();
                return(View(a));
            }
            catch (Exception ex)
            {
                throw ex;
            }

            //return View(await _context.Shippers.ToListAsync());
        }