Returns a list of recent patient views

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

Syntax

C#
public DataTable GetPatientView(
	int userId,
	string dataset,
	Nullable<int> count,
	bool distinct
)
Visual Basic
Public Function GetPatientView ( 
	userId As Integer,
	dataset As String,
	count As Nullable(Of Integer),
	distinct As Boolean
) As DataTable
Visual C++
public:
DataTable^ GetPatientView(
	int userId, 
	String^ dataset, 
	Nullable<int> count, 
	bool distinct
)

Parameters

userId
Type: System..::..Int32
the user's userid
dataset
Type: System..::..String
the dataset under which user viewed patient
count
Type: System..::..Nullable<(Of <(<'Int32>)>)>
restrict records to top @count, null for all
distinct
Type: System..::..Boolean
true|false if to filter distinct patients

Return Value

Type: DataTable

[Missing <returns> documentation for "M:Caisis.DataAccess.UserDa.GetPatientView(System.Int32,System.String,System.Nullable{System.Int32},System.Boolean)"]

See Also