示例#1
0
        public void TestModifyPatientBackground()
        {
            InitializeMappings();
            var pi = new PatientsImportUow {
                RepositoryFactory = new RepositoryFactory()
            };

            //pi.Initialize("HILLCREST001");
            pi.PatientBackgroundModification("HILLCREST001", "http://azurePhytel.cloudapp.net:59901/Patient");
        }
示例#2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Engage Data fix initializing...");
            InitializeMappings();
            Console.WriteLine("complete!");
            var pi = new PatientsImportUow {
                RepositoryFactory = new RepositoryFactory()
            };

            Console.WriteLine("getting repository...");
            //pi.Initialize("HILLCREST001");
            Console.WriteLine("Executing Data modification process...");
            var patientUrl = ConfigurationManager.AppSettings["DDPatientServiceUrl"];

            pi.PatientBackgroundModification("HILLCREST001", patientUrl);
            Console.WriteLine("Complete!");
            Console.ReadLine();
        }