// 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()); }