public async Task <ActionResult <SProductOfferItem> > PostSProductOfferItem(SProductOfferItem sProductOfferItem) { _context.SProductOfferItems.Add(sProductOfferItem); await _context.SaveChangesAsync(); return(CreatedAtAction("GetSProductOfferItem", new { id = sProductOfferItem.Id }, sProductOfferItem)); }
public async Task <IActionResult> PutSProductOfferItem(int id, SProductOfferItem sProductOfferItem) { if (id != sProductOfferItem.Id) { return(BadRequest()); } _context.Entry(sProductOfferItem).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!SProductOfferItemExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }