public async Task <IActionResult> Edit(int id, [Bind("tiposdocumentosID,Codigo,Descripcion")] Tiposdocumentos tiposdocumentos) { if (id != tiposdocumentos.tiposdocumentosID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(tiposdocumentos); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!TiposdocumentosExists(tiposdocumentos.tiposdocumentosID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(tiposdocumentos)); }
public async Task <IActionResult> Create([Bind("tiposdocumentosID,Codigo,Descripcion")] Tiposdocumentos tiposdocumentos) { if (ModelState.IsValid) { _context.Add(tiposdocumentos); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(tiposdocumentos)); }