예제 #1
0
		public static bool verifyMedication(Medication medication)
		{
			ScanVerifyWindow scan = new ScanVerifyWindow();
			scan.medication = medication;
			scan.ShowDialog();
			return scan.scanMatches;
		}
예제 #2
0
		public static bool verifyPatient(Patient patient)
		{           
			ScanVerifyWindow scan = new ScanVerifyWindow();
			scan.patient = patient;
			scan.ShowDialog();
			return scan.scanMatches;
		}