public bool verificaPaciente(Paciente paciente)
        {
            PacienteAccess da = new PacienteAccess(SqlConConnectionString);

            return(da.VerificaPaciente(paciente.cpf));
        }
        public void RegistrarPaciente(Paciente paciente)
        {
            PacienteAccess da = new PacienteAccess(SqlConConnectionString);

            da.InsertPaciente(paciente);
        }