public IActionResult Update(Lokal updatedLokal) { var lokal = _context.Lokal.FirstOrDefault(l => l.IdLokalu == updatedLokal.IdLokalu); if (lokal == null) { return(NotFound()); } _context.Lokal.Attach(updatedLokal); _context.Entry(updatedLokal).State = Microsoft.EntityFrameworkCore.EntityState.Modified; _context.SaveChanges(); return(Ok(updatedLokal)); }
public IActionResult Update(Promocja updatedPromocja) { var promocja = _context.Promocja.FirstOrDefault(p => p.IdPromocja == updatedPromocja.IdPromocja); if (promocja == null) { return(NotFound()); } _context.Promocja.Attach(updatedPromocja); _context.Entry(updatedPromocja).State = Microsoft.EntityFrameworkCore.EntityState.Modified; _context.SaveChanges(); return(Ok(updatedPromocja)); }
public IActionResult Update(Skladnik updatedSkladnik) { var skladnik = _context.Skladnik.FirstOrDefault(s => s.IdSkladnik == updatedSkladnik.IdSkladnik); if (skladnik == null) { return(NotFound()); } _context.Skladnik.Attach(updatedSkladnik); _context.Entry(updatedSkladnik).State = Microsoft.EntityFrameworkCore.EntityState.Modified; _context.SaveChanges(); return(Ok(updatedSkladnik)); }