public async Task<IHttpActionResult> Putpedido_itens(int id, pedido_itens pedido_itens) { if (!ModelState.IsValid) { return BadRequest(ModelState); } if (id != pedido_itens.idpedido_itens) { return BadRequest(); } db.Entry(pedido_itens).State = EntityState.Modified; try { await db.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!pedido_itensExists(id)) { return NotFound(); } else { throw; } } return StatusCode(HttpStatusCode.NoContent); }
public async Task<IHttpActionResult> Postpedido_itens(pedido_itens pedido_itens) { if (!ModelState.IsValid) { return BadRequest(ModelState); } db.pedido_itens.Add(pedido_itens); await db.SaveChangesAsync(); return CreatedAtRoute("DefaultApi", new { id = pedido_itens.idpedido_itens }, pedido_itens); }