public async Task <IActionResult> PutDiagramChannel(int id, DiagramChannel diagramChannel) { if (id != diagramChannel.DiagramMemberId) { return(BadRequest()); } _context.Entry(diagramChannel).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!DiagramChannelExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutSubArea(int id, SubArea subArea) { if (id != subArea.SubAreaId) { return(BadRequest()); } _context.Entry(subArea).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!SubAreaExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutNode(int id, Node node) { if (id != node.NodeId) { return(BadRequest()); } _context.Entry(node).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!NodeExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutNetworkDiagram(int id, NetworkDiagram networkDiagram) { if (id != networkDiagram.DiagramId) { return(BadRequest()); } _context.Entry(networkDiagram).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!NetworkDiagramExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutUser(int id, User user) { if (id != user.UserId) { return(BadRequest()); } _context.Entry(user).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UserExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }