gov.va.medora.mdws.ClinicalLib.getFluRelatedProblemList C# (CSharp) Method

getFluRelatedProblemList() public method

public getFluRelatedProblemList ( ) : TaggedProblemArrays
return gov.va.medora.mdws.dto.TaggedProblemArrays
        public TaggedProblemArrays getFluRelatedProblemList()
        {
            TaggedProblemArrays result = new TaggedProblemArrays();

            if (!mySession.ConnectionSet.IsAuthorized)
            {
                result.fault = new FaultTO("Connections not ready for operation", "Need to login?");
            }
            if (result.fault != null)
            {
                return result;
            }

            try
            {
                IndexedHashtable t = ClinicalApi.getFluRelatedProblemList(mySession.ConnectionSet);
                result = new TaggedProblemArrays(t);
            }
            catch (Exception e)
            {
                result.fault = new FaultTO(e);
            }
            return result;
        }