예제 #1
0
        public string Register(string xmlIn)
        {
            Log.OutPut("PACS传入:\r\n" + xmlIn);
            string xmlOut = string.Empty;

            using (Biz biz = new Biz())
            {
                xmlOut = biz.Register(xmlIn);
            }
            Log.OutPut("医院返回:\r\n" + xmlOut);
            return(xmlOut);
        }
예제 #2
0
        public string PacsApplication(string xmlIn)
        {
            Log.OutPut("PACS传入:\r\n" + xmlIn);
            string xmlOut = string.Empty;

            using (Biz biz = new Biz())
            {
                xmlOut = biz.PacsApp(xmlIn);
            }
            Log.OutPut("医院返回:\r\n" + xmlOut);
            return(xmlOut);
        }