Пример #1
0
        public TaggedInpatientStayArrays getStayMovementsByPatient()
        {
            TaggedInpatientStayArrays result = new TaggedInpatientStayArrays();

            if (!mySession.ConnectionSet.IsAuthorized)
            {
                result.fault = new FaultTO("Connections not ready for operation", "Need to login?");
            }
            if (result.fault != null)
            {
                return(result);
            }
            try
            {
                EncounterApi     api = new EncounterApi();
                IndexedHashtable t   = api.getStayMovementsByPatient(mySession.ConnectionSet, mySession.Patient.LocalPid);
                result = new TaggedInpatientStayArrays(t);
            }
            catch (Exception e)
            {
                result.fault = new FaultTO(e);
            }
            return(result);
        }