public async Task <IActionResult> CheckoutDeleteItem(int id, int orderId) { await _appOrder.DeleteItem(id, orderId); return(RedirectToAction("Checkout", "Order", new { id = orderId, productName = string.Empty })); }