예제 #1
0
        public static double GetRevenueByEPI(string epino)
        {
            double revenue = 0.0;

            var cmdString = QueryString.GetRevenueFromCache(epino);
            var rev       = InterSystemsDA.BindDataCommand(cmdString, Constants.Chache89);
            var result    = double.TryParse(rev, out revenue) ? revenue : 0.0;

            return(result);
        }
예제 #2
0
        public static string GetAllergenCategory(string algName)
        {
            string result = string.Empty;

            var cmdString = QueryString.GetAllergyCategory(algName);

            result = InterSystemsDA.BindDataCommand(cmdString, Constants.Chache89);

            return(result);
        }
예제 #3
0
        public static string GetHospitalSite(string siteCode)
        {
            string hos = string.Empty;

            var cmdString = QueryString.GetHospitalSites(siteCode);

            hos = InterSystemsDA.BindDataCommand(cmdString, Constants.Chache89);

            return(hos);
        }