public IActionResult MaakGordel([FromBody] Gordel nieuwGordel) { context.Gordels.Add(nieuwGordel); context.SaveChanges(); return(Created("", nieuwGordel)); }
public IActionResult TechniekAanmaken([FromBody] Techniek nieuwTechniek) { context.Technieken.Add(nieuwTechniek); context.SaveChanges(); return(Created("", nieuwTechniek)); }
public IActionResult PersoonAanmaken([FromBody] Persoon nieuwPersoon) { context.Personen.Add(nieuwPersoon); context.SaveChanges(); return(Created("", nieuwPersoon)); }