// GET: Dogs public async Task <IActionResult> Index() { var dogs = await _bll.Dog.AllForUserAsync(User.GetUserId()); return(View(dogs)); }