public IActionResult Update(Admin updatedAdmin) { var c = _context.Admin.FirstOrDefault(e => e.IdAdmin == updatedAdmin.IdAdmin); if (c == null) { return(NotFound()); } _context.Admin.Attach(updatedAdmin); _context.Entry(updatedAdmin).State = EntityState.Modified; _context.SaveChanges(); return(Ok(updatedAdmin)); }
public IActionResult Update(Platnosc updatedPayment) { var c = _context.Platnosc.FirstOrDefault(e => e.IdPlatnosc == updatedPayment.IdPlatnosc); if (c == null) { return(NotFound()); } _context.Platnosc.Attach(updatedPayment); _context.Entry(updatedPayment).State = EntityState.Modified; _context.SaveChanges(); return(Ok(updatedPayment)); }
public IActionResult Update(Promocja updatedPromotion) { var c = _context.Promocja.FirstOrDefault(e => e.IdPromocji == updatedPromotion.IdPromocji); if (c == null) { return(NotFound()); } _context.Promocja.Attach(updatedPromotion); _context.Entry(updatedPromotion).State = EntityState.Modified; _context.SaveChanges(); return(Ok(updatedPromotion)); }
public IActionResult Update(Lokal updatedPlace) { var c = _context.Lokal.FirstOrDefault(e => e.IdLokalu == updatedPlace.IdLokalu); if (c == null) { return(NotFound()); } _context.Lokal.Attach(updatedPlace); _context.Entry(updatedPlace).State = EntityState.Modified; _context.SaveChanges(); return(Ok(updatedPlace)); }
public IActionResult Update(ZawieraProdukty updatedContainsProducts) { var c = _context.ZawieraProdukty.FirstOrDefault(e => e.IdZawiera == updatedContainsProducts.IdZawiera); if (c == null) { return(NotFound()); } _context.ZawieraProdukty.Attach(updatedContainsProducts); _context.Entry(updatedContainsProducts).State = EntityState.Modified; _context.SaveChanges(); return(Ok(updatedContainsProducts)); }
public IActionResult Update(Zamowienie updatedOrder) { var c = _context.Zamowienie.FirstOrDefault(e => e.IdZamowienie == updatedOrder.IdZamowienie); if (c == null) { return(NotFound()); } _context.Zamowienie.Attach(updatedOrder); _context.Entry(updatedOrder).State = EntityState.Modified; _context.SaveChanges(); return(Ok(updatedOrder)); }
public IActionResult Update(Produkt updatedProduct) { var c = _context.Produkt.FirstOrDefault(e => e.IdProduktu == updatedProduct.IdProduktu); if (c == null) { return(NotFound()); } _context.Produkt.Attach(updatedProduct); _context.Entry(updatedProduct).State = EntityState.Modified; _context.SaveChanges(); return(Ok(updatedProduct)); }
public IActionResult Update(Skladnik updatedIngredient) { var c = _context.Skladnik.FirstOrDefault(e => e.IdSkladnik == updatedIngredient.IdSkladnik); if (c == null) { return(NotFound()); } _context.Skladnik.Attach(updatedIngredient); _context.Entry(updatedIngredient).State = EntityState.Modified; _context.SaveChanges(); return(Ok(updatedIngredient)); }
public IActionResult Update(Przepis updatedRecipe) { var c = _context.Przepis.FirstOrDefault(e => e.IdPrzepisu == updatedRecipe.IdPrzepisu); if (c == null) { return(NotFound()); } _context.Przepis.Attach(updatedRecipe); _context.Entry(updatedRecipe).State = EntityState.Modified; _context.SaveChanges(); return(Ok(updatedRecipe)); }
public IActionResult Update(Klient updatedClient) { var c = _context.Klient.FirstOrDefault(e => e.IdKlienta == updatedClient.IdKlienta); if (c == null) { return(NotFound()); } _context.Klient.Attach(updatedClient); _context.Entry(updatedClient).State = EntityState.Modified; _context.SaveChanges(); return(Ok(updatedClient)); }
public IActionResult Update(SkladaSie updatedConsists) { var c = _context.SkladaSie.FirstOrDefault(e => e.IdSkladaSie == updatedConsists.IdSkladaSie); if (c == null) { return(NotFound()); } _context.SkladaSie.Attach(updatedConsists); _context.Entry(updatedConsists).State = EntityState.Modified; _context.SaveChanges(); return(Ok(updatedConsists)); }
public IActionResult Update(ZamowienieSzczegoly updatedOrderDetails) { var c = _context.ZamowienieSzczegoly.FirstOrDefault(e => e.IdSzczegoly == updatedOrderDetails.IdSzczegoly); if (c == null) { return(NotFound()); } _context.ZamowienieSzczegoly.Attach(updatedOrderDetails); _context.Entry(updatedOrderDetails).State = EntityState.Modified; _context.SaveChanges(); return(Ok(updatedOrderDetails)); }