Migrates an eform, saving each record.

Namespace: Caisis.BOL
Assembly: Caisis.BOL (in Caisis.BOL.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static bool MigrateEformXml(
	int patientId,
	string xml,
	out string migrationErrorLog
)
Visual Basic
Public Shared Function MigrateEformXml ( 
	patientId As Integer,
	xml As String,
	<OutAttribute> ByRef migrationErrorLog As String
) As Boolean
Visual C++
public:
static bool MigrateEformXml(
	int patientId, 
	String^ xml, 
	[OutAttribute] String^% migrationErrorLog
)

Parameters

patientId
Type: System..::..Int32

[Missing <param name="patientId"/> documentation for "M:Caisis.BOL.XmlServices.MigrateEformXml(System.Int32,System.String,System.String@)"]

xml
Type: System..::..String

[Missing <param name="xml"/> documentation for "M:Caisis.BOL.XmlServices.MigrateEformXml(System.Int32,System.String,System.String@)"]

migrationErrorLog
Type: System..::..String%

[Missing <param name="migrationErrorLog"/> documentation for "M:Caisis.BOL.XmlServices.MigrateEformXml(System.Int32,System.String,System.String@)"]

Return Value

Type: Boolean
True on success, false if there were migration errors, in which case the migrationErrorLog will be non-null.

See Also