public async Task <IActionResult> AddDishToCart(int dishId) { await _cartService.AddDishToCart(dishId); return(RedirectToAction("Index", "Home")); }