gov.va.medora.mdo.api.PatientApi.getConfidentiality C# (CSharp) Метод

getConfidentiality() публичный Метод

public getConfidentiality ( ConnectionSet cxns ) : IndexedHashtable
cxns gov.va.medora.mdo.dao.ConnectionSet
Результат IndexedHashtable
        public IndexedHashtable getConfidentiality(ConnectionSet cxns)
        {
            return cxns.query(DAO_NAME, "getConfidentiality", new object[] { });
        }

Same methods

PatientApi::getConfidentiality ( gov.va.medora.mdo.dao.AbstractConnection cxn ) : string>.KeyValuePair

Usage Example

Пример #1
0
        public TaggedTextArray getConfidentiality()
        {
            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
            {
                PatientApi api = new PatientApi();
                result = new TaggedTextArray(api.getConfidentiality(mySession.ConnectionSet));
            }
            catch (Exception e)
            {
                result.fault = new FaultTO(e);
            }
            return result;
        }
All Usage Examples Of gov.va.medora.mdo.api.PatientApi::getConfidentiality