Exemplo n.º 1
0
        public string GetReports(String PatientName, String AccessionNumber, List <string> QueryStrings, string PatientID)
        {
            ReportsDataAndBusiness.ReportWebServicesBL rbl = new ReportsDataAndBusiness.ReportWebServicesBL();
            RecordLog("WCF Get Reports called");
            string result = string.Empty;

            try
            {
                result = rbl.GetReports(PatientName, AccessionNumber, QueryStrings, PatientID);
            }
            catch (Exception ee)
            {
                RecordLog("Exception in WCF Get Reports. Message:" + ee.Message);
            }
            RecordLog("WCF Get Reports complete");
            return(result);
        }
Exemplo n.º 2
0
        public List <string> GetAllQueryStrings()
        {
            ReportsDataAndBusiness.ReportWebServicesBL rbl = new ReportsDataAndBusiness.ReportWebServicesBL();
            RecordLog("WCF Get GetAllQueryStrings called");
            List <string> result = new List <string>();

            try
            {
                result = rbl.GetAllQueryStrings();
            }
            catch (Exception ee)
            {
                RecordLog("Exception inGetAllQueryStrings. Message:" + ee.Message);
            }
            RecordLog("WCF Get GetAllQueryStrings complete");
            return(result);
        }