예제 #1
0
 /// <summary>
 /// Initializes a new instance of the Manage class
 /// </summary>
 public Manage()
 {
     this.InitializeComponent();
     this.InitializeResourceString();
     this.InitializeDropDownList();
     this.InitilizeDataGridViewStyle();
     this.InitilizeServerDataGridViewStyle();
     this.patientService = new FHIRPatientService();
     this.ResetRegistration();
     this.ResetSearch();
 }
예제 #2
0
        public void Init()
        {
            if (this.testPatientService == null)
            {
                this.testPatientService = new FHIRPatientService();
            }

            if (this.testServerService == null)
            {
                this.testServerService = new FHIRServerAccessService(new Uri(TestServer));
            }
        }