public async Task <ActionResult <ClassProjet> > PostClassProjet(ClassProjet classProjet) { _context.classProjets.Add(classProjet); await _context.SaveChangesAsync(); return(CreatedAtAction("GetClassProjet", new { id = classProjet.Id }, classProjet)); }
public async Task <IActionResult> PutClassProjet(int id, ClassProjet classProjet) { if (id != classProjet.Id) { return(BadRequest()); } _context.Entry(classProjet).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ClassProjetExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }