public void HandleUnscheduledMPPS(
string mppsSOPInstanceUID,
string scheduledProcedureStepID
)
mppsSOPInstanceUID
The SOP Instance UID for the MPPS Instance that is to be deleted.
scheduledProcedureStepID
Identifier that identifies the Scheduled Procedure Step.
Connect an unscheduled procedure step with an existing scheduled procedure step.
Shows how to use the miscellaneous methods of the broker service.
using Leadtools;
using Leadtools.Medical.Worklist.Wcf.Service;
using Leadtools.Medical.Worklist.DataAccessLayer.MatchingParameters;
using Leadtools.Dicom;
using Leadtools.Medical.Worklist.Wcf.Entities;
public void MiscelleaneousTest()
{
try
{
List<string> uids = new List<string>(_BrokerService.GetUnscheduledPerformedProcedureStepUIDs());
if (uids.Contains("987.654.3210000"))
{
_BrokerService.HandleUnscheduledMPPS("987.654.3210000", "123.456.89000000");
}
Console.WriteLine("Exists: " + _BrokerService.PerformedProcedureStepExists("987.654.3210000").ToString());
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}