public async Task <IActionResult> Edit(int id, [Bind("SectionId,BeginAndEnd,SectionName,StreetId")] Sections sections) { if (id != sections.SectionId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(sections); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!SectionsExists(sections.SectionId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["StreetId"] = new SelectList(_context.Streets, "StreetId", "StreetId", sections.StreetId); return(View(sections)); }
public async Task <IActionResult> Edit(int id, [Bind("StreetLightingId,CountLantern,Failure,LampId,LanternId,SectionId")] StreetLightings streetLightings) { if (id != streetLightings.StreetLightingId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(streetLightings); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!StreetLightingsExists(streetLightings.StreetLightingId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["LampId"] = new SelectList(_context.Lamps, "LampId", "LampId", streetLightings.LampId); ViewData["LanternId"] = new SelectList(_context.Lanterns, "LanternId", "LanternId", streetLightings.LanternId); ViewData["SectionId"] = new SelectList(_context.Sections, "SectionId", "SectionId", streetLightings.SectionId); return(View(streetLightings)); }
public async Task <IActionResult> Edit(int id, [Bind("LanternId,LanternName,LanternType")] Lanterns lanterns) { if (id != lanterns.LanternId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(lanterns); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!LanternsExists(lanterns.LanternId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(lanterns)); }
public async Task <IActionResult> Edit(int id, [Bind("StreetId,StreetName")] Streets streets) { if (id != streets.StreetId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(streets); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!StreetsExists(streets.StreetId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(streets)); }