public async Task <IActionResult> PutRating([FromRoute] int id, [FromBody] Rating rating) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != rating.RatingId) { return(BadRequest()); } _context.Entry(rating).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!RatingExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutCleaningSerAtTour([FromRoute] int id, [FromBody] CleaningSerAtTour cleaningSerAtTour) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != cleaningSerAtTour.CleaningSerAtTourId) { return(BadRequest()); } _context.Entry(cleaningSerAtTour).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CleaningSerAtTourExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutTouristDestinations([FromRoute] int id, [FromBody] TouristDestinations touristDestinations) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != touristDestinations.TouristDestinationId) { return(BadRequest()); } _context.Entry(touristDestinations).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!TouristDestinationsExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }