public IActionResult Create(Promocja newPromotion) { _context.Promocja.Add(newPromotion); _context.SaveChanges(); return(StatusCode(201, newPromotion)); }
public IActionResult Create(Produkt newProdukt) { _context.Produkt.Add(newProdukt); _context.SaveChanges(); return(StatusCode(201, newProdukt)); }
public IActionResult Create(Klient newKlient) { _context.Klient.Add(newKlient); _context.SaveChanges(); return(StatusCode(201, newKlient)); }