public TaggedTextArray getActiveReminderReports()
{
TaggedTextArray result = new TaggedTextArray();
if (!mySession.ConnectionSet.IsAuthorized)
{
result.fault = new FaultTO("Connections not ready for operation", "Need to login?");
}
if (result.fault != null)
{
return result;
}
try
{
OrderedDictionary d = ClinicalReminder.getActiveReminderReports(mySession.ConnectionSet.BaseConnection);
result = new TaggedTextArray(d);
}
catch (Exception e)
{
result.fault = new FaultTO(e);
}
return result;
}