public IActionResult ListarTrofeus(int id)
 {
     try
     {
         var response = _entregaDeTrofeuService.Listar(new FiltroTrofeusRequest {
             IdEntregaDeLicao = id
         });
         return(Ok(response));
     }
     catch
     {
         return(NotFound());
     }
 }
        public IActionResult Trofeus(int id)
        {
            // try
            // {
            var response = _entregaDeTrofeuService.Listar(new FiltroTrofeusRequest {
                IdGrupo = id
            });

            return(Ok(response));
            // }
            // catch
            // {
            //     return NotFound();
            // }
        }