public List <PerfilDTO> GetAll()
 {
     return(mapper.Map <List <PerfilDTO> >
                (perfilDomainService.GetAll()));
 }
 public List <Perfil> GetAll()
 {
     return(_perfilDomainService.GetAll());
 }