public async Task <IActionResult> Edit(int id, [Bind("ID,Name,Address,Phone")] Hotel hotel) { if (id != hotel.ID) { return(NotFound()); } if (ModelState.IsValid) { try { await _hotel.EditHotelDetails(hotel); } catch (DbUpdateConcurrencyException) { if (!HotelExists(hotel.ID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(hotel)); }