Example #1
0
        public async Task <IActionResult> Edit(int id, [Bind("IdPercorso,IdSottorete,IdStazioneOrigine,IdStazioneDestinazione,IdVia1,IdVia2,Distanza,Version")] PercorsiModel percorsiModel)
        {
            if (id != percorsiModel.IdPercorso)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(percorsiModel);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!PercorsiModelExists(percorsiModel.IdPercorso))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction(nameof(Index)));
            }
            return(View(percorsiModel));
        }
        public async Task <IActionResult> Edit(int id, [Bind("IDStazione,CodiceStazione,NomeStazione,RitiroTessera,RiCaricaAbbonamento,Versione")] StazioneModel stazioneModel)
        {
            if (id != stazioneModel.IDStazione)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(stazioneModel);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!StazioneModelExists(stazioneModel.IDStazione))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction(nameof(Index)));
            }
            return(View(stazioneModel));
        }