public IActionResult Post([FromBody] GameViewModel model) { _db.GameAdd(model.Title, model.Price); return(Ok(model)); }