public IEnumerable <PerfilDTO> ListarPerfis() { var perfis = perfilRepository.All().ToList(); return(perfis.Select(x => new PerfilDTO(x))); }