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