Gets most recent distinct patient labs

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

Syntax

C#
public DataSet GetMostRecentDistinctLabTests(
	int patientId,
	int numOfEachType
)
Visual Basic
Public Function GetMostRecentDistinctLabTests ( 
	patientId As Integer,
	numOfEachType As Integer
) As DataSet
Visual C++
public:
DataSet^ GetMostRecentDistinctLabTests(
	int patientId, 
	int numOfEachType
)

Parameters

patientId
Type: System..::..Int32

[Missing <param name="patientId"/> documentation for "M:Caisis.DataAccess.LabTestDa.GetMostRecentDistinctLabTests(System.Int32,System.Int32)"]

numOfEachType
Type: System..::..Int32
Number of each distinct type of lab to return. (i.e. numOfEachType = 1, returns TOP 1 of each distinct lab. numOfEachType = 2 returns TOP 2 of each distinct lab)

Return Value

Type: DataSet

[Missing <returns> documentation for "M:Caisis.DataAccess.LabTestDa.GetMostRecentDistinctLabTests(System.Int32,System.Int32)"]

See Also