public IHttpActionResult Create([FromBody] PCCreateModel pcGameToCreate) { _pcService = new PCGameService(); _pcService.CreatePCGame(pcGameToCreate); return(Ok()); }