public async Task <IActionResult> PutTurmaAluno(int id, TurmaAluno turmaAluno) { if (id != turmaAluno.Id) { return(BadRequest()); } _context.Entry(turmaAluno).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!TurmaAlunoExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutEstudante(int id, Estudante estudante) { if (id != estudante.Matricula) { return(BadRequest()); } _context.Entry(estudante).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!EstudanteExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutProfessor(int id, Professor professor) { if (id != professor.Registro) { return(BadRequest()); } _context.Entry(professor).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProfessorExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }