Gets a UNION view of Medications + MedicalTherapy (Orally) optionally restricted by @StopDate.

Namespace: Caisis.DataAccess
Assembly: Caisis.DataAccess (in Caisis.DataAccess.dll) Version: 4.0.4947.22627

Syntax

C#
public DataTable GetMedicationsAndOralMedTx(
	int patientId,
	Nullable<DateTime> stopDate
)
Visual Basic
Public Function GetMedicationsAndOralMedTx ( 
	patientId As Integer,
	stopDate As Nullable(Of DateTime)
) As DataTable
Visual C++
public:
DataTable^ GetMedicationsAndOralMedTx(
	int patientId, 
	Nullable<DateTime> stopDate
)

Parameters

patientId
Type: System..::..Int32
The patientId of the Patient
stopDate
Type: System..::..Nullable<(Of <(<'DateTime>)>)>
Optionally restrict to MedStopDate >= @StopDate, null for no restriction.

Return Value

Type: DataTable

[Missing <returns> documentation for "M:Caisis.DataAccess.MedicationDa.GetMedicationsAndOralMedTx(System.Int32,System.Nullable{System.DateTime})"]

See Also