public async Task <IActionResult> PutShoe([FromRoute] int id, [FromBody] Shoe shoe) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != shoe.ProductId) { return(BadRequest()); } _context.Entry(shoe).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ShoeExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutCompany([FromRoute] int id, [FromBody] Company company) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != company.BrandId) { return(BadRequest()); } _context.Entry(company).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CompanyExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }