コード例 #1
0
 public IActionResult Post([FromBody] GameViewModel model)
 {
     _db.GameAdd(model.Title, model.Price);
     return(Ok(model));
 }