public async Task <IActionResult> Edit(int id, [Bind("BookingDetailId,ItineraryNo,TripStart,TripEnd,Description,Destination,BasePrice,AgencyCommission,BookingId,RegionId,ClassId,FeeId,ProductSupplierId")] BookingDetails bookingDetails) { if (id != bookingDetails.BookingDetailId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(bookingDetails); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!BookingDetailsExists(bookingDetails.BookingDetailId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(bookingDetails)); }
public async Task <IActionResult> Edit(int id, [Bind("PackageId,PkgName,PkgStartDate,PkgEndDate,PkgDesc,PkgBasePrice,PkgAgencyCommission,Images")] Packages packages) { if (id != packages.PackageId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(packages); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!PackagesExists(packages.PackageId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(packages)); }
public async Task <IActionResult> Edit(int id, [Bind("CustomerId,CustFirstName,CustLastName,CustAddress,CustCity,CustProv,CustPostal,CustCountry,CustHomePhone,CustBusPhone,CustEmail,AgentId")] Customers customers) { if (id != customers.CustomerId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(customers); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CustomersExists(customers.CustomerId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(customers)); }
public async Task <IActionResult> Edit(int id, [Bind("BookingId,BookingDate,BookingNo,TravelerCount,CustomerId,TripTypeId,PackageId")] Bookings bookings) { if (id != bookings.BookingId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(bookings); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!BookingsExists(bookings.BookingId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(bookings)); }
public async Task <IActionResult> Edit(int id, [Bind("AgentId,AgtFirstName,AgtMiddleInitial,AgtLastName,AgtBusPhone,AgtEmail,AgtPosition,AgencyId")] Agents agents) { if (id != agents.AgentId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(agents); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!AgentsExists(agents.AgentId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(agents)); }
public async Task <IActionResult> Edit(int id, [Bind("AgencyId,AgncyAddress,AgncyCity,AgncyProv,AgncyPostal,AgncyCountry,AgncyPhone,AgncyFax")] Agencies agencies) { if (id != agencies.AgencyId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(agencies); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!AgenciesExists(agencies.AgencyId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(agencies)); }