public IActionResult Post([FromBody] ChampionshipDTO model)
 {
     _championshipService.Insert(model);
     return(Ok());
 }