public async Task <IActionResult> Create(Proceso proceso) { await _bufeteDbContext.AddAsync(proceso); await _bufeteDbContext.SaveChangesAsync(); return(View()); }
public async Task <IActionResult> Create(Persona persona) { await _db.AddAsync(persona); await _db.SaveChangesAsync(); return(this.Redireccionar($"{Mensaje.Informacion}|{Mensaje.Satisfactorio}")); }