public IActionResult RemoveZamowienie(int id) { var dost = _context.Zamowienie.FirstOrDefault((d => d.IdZam == id)); if (dost == null) { return(NotFound()); } else { _context.Remove(dost); _context.SaveChanges(); return(Ok("usunieto zamowienie")); }; }
public IActionResult RemoveDostawca(int id) { var dost = _context.Dostawca.FirstOrDefault((d => d.IdPrac == id)); if (dost == null) { return(NotFound()); } else { _context.Remove(dost); _context.SaveChanges(); return(Ok("usunieto uzytkownika")); }; }