상속: AbstractArrayTO
예제 #1
0
파일: VitalsLib.cs 프로젝트: OSEHRA/mdws
        public TaggedVitalSignSetArrays getVitalSigns()
        {
            TaggedVitalSignSetArrays result = new TaggedVitalSignSetArrays();

            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 = VitalSignSet.getVitalSigns(mySession.ConnectionSet);
                result = new TaggedVitalSignSetArrays(t);
            }
            catch (Exception e)
            {
                result.fault = new FaultTO(e);
            }
            return result;
        }