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