public async Task <IActionResult> PutProject(int id, Project project) { if (id != project.Id) { return(BadRequest()); } _context.Entry(project).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProjectExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutBuilder(int id, Builder builder) { if (id != builder.Id) { return(BadRequest()); } _context.Entry(builder).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!BuilderExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }