public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.Attach(Incidencia).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!IncidenciaExists(Incidencia.IncidenciaID)) { return(NotFound()); } else { throw; } } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.Paquetes.Add(Paquete); await _context.SaveChangesAsync(); return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (!ModelState.IsValid) { return(Page()); } var estadoToUpdate = await _context.Aplicacion.FindAsync(id); if (await TryUpdateModelAsync <Aplicacion>(estadoToUpdate, "aplicacion", s => s.AplicacionID, s => s.NombreApp, s => s.DescripcionApp, s => s.DetalleApp, s => s.StartDate, s => s.FinalDate)) { await _context.SaveChangesAsync(); return(RedirectToPage("./Index")); } PopulateEstadosDropDownList(_context, estadoToUpdate.EstadoID); return(Page()); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } Paquete = await _context.Paquetes.FindAsync(id); if (Paquete != null) { _context.Paquetes.Remove(Paquete); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } Aplicacion = await _context.Aplicacion.AsNoTracking().FirstOrDefaultAsync(m => m.AplicacionID == id); if (Aplicacion != null) { _context.Aplicacion.Remove(Aplicacion); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } Dependencia = await _context.Dependencias.AsNoTracking().FirstOrDefaultAsync(m => m.DependenciaID == id); if (Dependencia != null) { _context.Dependencias.Remove(Dependencia); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } Incidencia = await _context.Incidencias.FindAsync(id); if (Incidencia != null) { _context.Incidencias.Remove(Incidencia); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (!ModelState.IsValid) { return(Page()); } var dependenciaToUpdate = await _context.Dependencias.FindAsync(id); if (await TryUpdateModelAsync <Dependencia>(dependenciaToUpdate, "dependencias", s => s.NombreDpd, s => s.DescripcionDpd, s => s.StartDate, s => s.FinaltDate, s => s.EstadoID)) { await _context.SaveChangesAsync(); return(RedirectToPage("./Index")); } PopulateEstadosDropDownList(_context, dependenciaToUpdate.EstadoID); return(Page()); }
public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } var emptyDependencia = new Dependencia(); if (await TryUpdateModelAsync <Dependencia>(emptyDependencia, "dependencias", s => s.NombreDpd, s => s.DescripcionDpd, s => s.StartDate, s => s.FinaltDate, s => s.EstadoID)) { _context.Dependencias.Add(emptyDependencia); // await _context.SaveChangesAsync(); // return(RedirectToPage("./Index")); // } PopulateEstadosDropDownList(_context, emptyDependencia.EstadoID); return(Page()); }