gov.va.medora.mdws.PatientLib.processContacts C# (CSharp) Method

processContacts() private method

private processContacts ( IndexedHashtable t ) : PatientAssociateArray
t gov.va.medora.mdo.IndexedHashtable
return gov.va.medora.mdws.dto.PatientAssociateArray
        internal PatientAssociateArray processContacts(IndexedHashtable t)
        {
            ArrayList lst = new ArrayList();
            for (int siteIdx = 0; siteIdx < t.Count; siteIdx++)
            {
                PatientAssociate[] pas = (PatientAssociate[])t.GetValue(siteIdx);
                for (int i = 0; i < pas.Length; i++)
                {
                    lst.Add(pas[i]);
                }
            }
            return new PatientAssociateArray(lst);
        }