public async Task <ActionResult <Departamento> > PostDepartamentoItems(Departamento item) { context.Departamento.Add(item); await context.SaveChangesAsync(); return(CreatedAtAction(nameof(GetDepartamentoItem), new { id = item.ID_Persona }, item)); }
public async Task <IActionResult> Create([Bind("Id_departamento,Nome,Cidade,Fg_ativo")] Departamento departamento) { if (ModelState.IsValid) { _context.Add(departamento); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(departamento)); }