public void Insert(PacienteInformacaoInsertDTO pacienteInformacao)
        {
            var r = mapper.Map <pacienteinformacao>(pacienteInformacao);

            r.Idpacienteinformacao = Guid.NewGuid();
            repository.Insert(r);
        }
 public void Insert(PacienteInformacaoInsertDTO PacienteInformacao)
 {
     service.Insert(PacienteInformacao);
 }