public async Task <IActionResult> PutDemandeAttestationTravail(int id, DemandeAttestationTravail demandeAttestationTravail) { if (id != demandeAttestationTravail.Id) { return(BadRequest()); } _context.Entry(demandeAttestationTravail).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!DemandeAttestationTravailExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <ActionResult <DemandeAttestationTravail> > PostDemandeAttestationTravail(DemandeAttestationTravail demandeAttestationTravail) { _context.demandeAttestationTravails.Add(demandeAttestationTravail); await _context.SaveChangesAsync(); return(CreatedAtAction("GetDemandeAttestationTravail", new { id = demandeAttestationTravail.Id }, demandeAttestationTravail)); }