public async Task <IActionResult> PutStores([FromRoute] int id, [FromBody] Stores stores) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != stores.StoreId) { return(BadRequest()); } _context.Entry(stores).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!StoresExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }