public IActionResult Delete(int id) { if (ModelState.IsValid) { _billingContext.DeleteBill(id); } return(Index()); }