コード例 #1
0
 public IActionResult CreatePloeg([FromBody] Ploeg newPloeg)
 {
     context.Ploegen.Add(newPloeg);
     context.SaveChanges();
     return(Created("", newPloeg));
 }
コード例 #2
0
 public IActionResult CreateSpeler([FromBody] Speler newSpeler)
 {
     context.Spelers.Add(newSpeler);
     context.SaveChanges();
     return(Created("", newSpeler));
 }