DataManager GetPatientInfoAuditable Method

Retrieves detailed information about patients by firstname, lastname and birthdate.

Namespace:  Dtx.DataAccessExt
Assembly:  Dtx.DataAccessExt (in Dtx.DataAccessExt.dll) Version: 11.0.12.85

Syntax
C#
public IList<PatientInfo> GetPatientInfoAuditable(
        string firstName,
        string lastName,
        DateTime birthDate
)

Parameters

firstName
Type: System String
The patient's first name. Optional parameter.
lastName
Type: System String
The patient's last name. Optional parameter.
birthDate
Type: System DateTime
The patient’s date of birth.

Return Value

Type: IList PatientInfo
A list of patients.
Exceptions
Exception Condition
DtxApiErrorException Throws exception with error codes declared in DtxApiErrorType.
SqlException Occurs when SQL Server returns a warning or error.
See Also