Exemple #1
0
 public override void Pesquisa(string texto)
 {
     try
     {
         List <Materia> materias = _serviceMateria.Pesquisar(texto);
         _controlMateria.PopularListagemMaterias(materias);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }