public async Task <IActionResult> PutOrdering(int id, Ordering ordering) { if (id != ordering.Id) { return(BadRequest()); } _context.Entry(ordering).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!OrderingExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutFavorite(int id, Favorite favorite) { if (id != favorite.Id) { return(BadRequest()); } _context.Entry(favorite).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!FavoriteExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutProduct(int id, Product product) { if (id != product.Id) { return(BadRequest()); } _context.Entry(product).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProductExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutShopAccount(string id, ShopAccount shopAccount) { if (id != shopAccount.Username) { return(BadRequest()); } _context.Entry(shopAccount).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ShopAccountExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutDeliveryAddress(int id, DeliveryAddress deliveryAddress) { if (id != deliveryAddress.Id) { return(BadRequest()); } _context.Entry(deliveryAddress).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!DeliveryAddressExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }