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