public IActionResult BuscarPeloNome(string nome)
 {
     try
     {
         List <JogoViewModel> a = estudioRepository.BuscarPeloNome(nome);
         return(Ok(a));
     }
     catch (Exception)
     {
         return(NotFound());
     }
 }