public async Task <IActionResult> PutaddressModel(int id, addressModel addressModel) { if (id != addressModel.Id) { return(BadRequest()); } _context.Entry(addressModel).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!addressModelExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutuserModel(int id, userModel userModel) { userModel.Id = id; _context.Entry(userModel).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!userModelExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }