public async Task <IActionResult> PostGameTag([FromBody] GameTag gameTag)
 {
     return(ApiOk(await GameTagService.AddAsync(gameTag)));
 }