コード例 #1
0
        public async Task <IActionResult> Create(Proceso proceso)
        {
            await _bufeteDbContext.AddAsync(proceso);

            await _bufeteDbContext.SaveChangesAsync();

            return(View());
        }
コード例 #2
0
        public async Task <IActionResult> Create(Persona persona)
        {
            await _db.AddAsync(persona);

            await _db.SaveChangesAsync();

            return(this.Redireccionar($"{Mensaje.Informacion}|{Mensaje.Satisfactorio}"));
        }