public async Task <IActionResult> PutPaymentDetail([FromRoute] int id, [FromBody] PaymentDetail paymentDetail) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != paymentDetail.PMId) { return(BadRequest()); } _context.Entry(paymentDetail).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!PaymentDetailExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutTypePatrimoine([FromRoute] int id, [FromBody] TypePatrimoine typePatrimoine) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != typePatrimoine.Id) { return(BadRequest()); } _context.Entry(typePatrimoine).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!TypePatrimoineExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutContactDetail(int id, ContactDetail contactDetail) { if (id != contactDetail.ContactId) { return(BadRequest()); } _context.Entry(contactDetail).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ContactDetailExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }