public async Task <IActionResult> Index() { List <Product> products = await _repo.GetAllProductsAsync(); return(View(products)); }