public Time BuscarPorNome(string nome)
 {
     return(_timeRepository.Find(x => x.Nome == nome));
 }